mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-12-01 08:47:59 +01:00
12 lines
334 B
Java
12 lines
334 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());
|
||
|
}
|
||
|
}
|