Add in a helper on the server start event for adding commands to
the server.
This commit is contained in:
parent
1720382475
commit
252f3a5a92
1 changed files with 8 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
|||
package cpw.mods.fml.common.event;
|
||||
|
||||
import net.minecraft.server.MinecraftServer;
|
||||
import net.minecraft.src.CommandHandler;
|
||||
import net.minecraft.src.ICommand;
|
||||
import cpw.mods.fml.common.LoaderState.ModState;
|
||||
|
||||
public class FMLServerStartingEvent extends FMLStateEvent
|
||||
|
@ -23,4 +25,10 @@ public class FMLServerStartingEvent extends FMLStateEvent
|
|||
{
|
||||
return server;
|
||||
}
|
||||
|
||||
public void registerServerCommand(ICommand command)
|
||||
{
|
||||
CommandHandler ch = (CommandHandler) getServer().func_71187_D();
|
||||
ch.func_71560_a(command);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue