Add in a helper on the server start event for adding commands to
the server.
This commit is contained in:
parent
be7b413bec
commit
d544e56ec3
1 changed files with 8 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
||||||
package cpw.mods.fml.common.event;
|
package cpw.mods.fml.common.event;
|
||||||
|
|
||||||
import net.minecraft.server.MinecraftServer;
|
import net.minecraft.server.MinecraftServer;
|
||||||
|
import net.minecraft.src.CommandHandler;
|
||||||
|
import net.minecraft.src.ICommand;
|
||||||
import cpw.mods.fml.common.LoaderState.ModState;
|
import cpw.mods.fml.common.LoaderState.ModState;
|
||||||
|
|
||||||
public class FMLServerStartingEvent extends FMLStateEvent
|
public class FMLServerStartingEvent extends FMLStateEvent
|
||||||
|
@ -23,4 +25,10 @@ public class FMLServerStartingEvent extends FMLStateEvent
|
||||||
{
|
{
|
||||||
return server;
|
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