diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 2 | ||||
-rw-r--r-- | src/main/java/gregtech/common/misc/spaceprojects/commands/SpaceProject_Command.java | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 2569ff3b53..8b55f0a73f 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -85,6 +85,7 @@ import gregtech.common.entities.GT_Entity_Arrow_Potion; import gregtech.common.misc.GT_Command; import gregtech.common.misc.spaceprojects.commands.SPM_Command; import gregtech.common.misc.spaceprojects.commands.SP_Command; +import gregtech.common.misc.spaceprojects.commands.SpaceProject_Command; import gregtech.common.tileentities.machines.GT_MetaTileEntity_Hatch_CraftingInput_ME; import gregtech.common.tileentities.storage.GT_MetaTileEntity_DigitalChestBase; import gregtech.crossmod.holoinventory.HoloInventory; @@ -756,6 +757,7 @@ public class GT_Mod implements IGT_Mod { aEvent.registerServerCommand(new GT_Command()); aEvent.registerServerCommand(new SP_Command()); aEvent.registerServerCommand(new SPM_Command()); + aEvent.registerServerCommand(new SpaceProject_Command()); // Sets a new Machine Block Update Thread everytime a world is loaded GT_Runnable_MachineBlockUpdate.initExecutorService(); } diff --git a/src/main/java/gregtech/common/misc/spaceprojects/commands/SpaceProject_Command.java b/src/main/java/gregtech/common/misc/spaceprojects/commands/SpaceProject_Command.java new file mode 100644 index 0000000000..2f36175069 --- /dev/null +++ b/src/main/java/gregtech/common/misc/spaceprojects/commands/SpaceProject_Command.java @@ -0,0 +1,9 @@ +package gregtech.common.misc.spaceprojects.commands; + +public class SpaceProject_Command extends SP_Command { + + @Override + public String getCommandName() { + return "spaceproject"; + } +} |