Unicopia/src/main/java/com/minelittlepony/unicopia/command/Commands.java

14 lines
383 B
Java
Raw Normal View History

2018-09-12 01:29:49 +02:00
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);
2018-09-12 01:29:49 +02:00
}
}