mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
13 lines
383 B
Java
13 lines
383 B
Java
package com.minelittlepony.unicopia.command;
|
|
|
|
import net.minecraftforge.fml.common.event.FMLServerStartingEvent;
|
|
|
|
public class Commands {
|
|
|
|
public static void init(FMLServerStartingEvent event) {
|
|
event.registerServerCommand(new CommandOverrideGameMode());
|
|
event.registerServerCommand(new CommandSpecies());
|
|
|
|
event.getServer().setAllowFlight(true);
|
|
}
|
|
}
|