2012-12-20 22:45:50 +01:00
|
|
|
package com.pahimar.ee3.command;
|
|
|
|
|
|
|
|
import cpw.mods.fml.common.event.FMLServerStartingEvent;
|
|
|
|
|
|
|
|
public class CommandHandler {
|
|
|
|
|
|
|
|
public static void initCommands(FMLServerStartingEvent event) {
|
2012-12-21 16:44:15 +01:00
|
|
|
|
2012-12-20 22:45:50 +01:00
|
|
|
event.registerServerCommand(new CommandEE());
|
|
|
|
}
|
|
|
|
}
|