aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/GTplusplus.java
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-10-25 23:57:04 +0100
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-10-25 23:57:04 +0100
commit7e09b5381593a23aeff0a0bab03926a8c1e2b87d (patch)
treec815e6de403ede869dde352c9d62eddab73b8551 /src/Java/gtPlusPlus/GTplusplus.java
parente617124ba171bdf0a5aa8165c63715634de3f3c3 (diff)
downloadGT5-Unofficial-7e09b5381593a23aeff0a0bab03926a8c1e2b87d.tar.gz
GT5-Unofficial-7e09b5381593a23aeff0a0bab03926a8c1e2b87d.tar.bz2
GT5-Unofficial-7e09b5381593a23aeff0a0bab03926a8c1e2b87d.zip
+ Added 'DebugChunks' function.
+ Added ASM Config.
Diffstat (limited to 'src/Java/gtPlusPlus/GTplusplus.java')
-rw-r--r--src/Java/gtPlusPlus/GTplusplus.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/GTplusplus.java b/src/Java/gtPlusPlus/GTplusplus.java
index 28870f3d64..a664555cf2 100644
--- a/src/Java/gtPlusPlus/GTplusplus.java
+++ b/src/Java/gtPlusPlus/GTplusplus.java
@@ -21,6 +21,7 @@ import gregtech.api.util.GT_Recipe.GT_Recipe_Map;
import gtPlusPlus.api.objects.Logger;
import gtPlusPlus.api.objects.data.AutoMap;
import gtPlusPlus.api.objects.data.Pair;
+import gtPlusPlus.core.commands.CommandDebugChunks;
import gtPlusPlus.core.commands.CommandMath;
import gtPlusPlus.core.common.CommonProxy;
import gtPlusPlus.core.config.ConfigHandler;
@@ -175,6 +176,7 @@ public class GTplusplus implements ActionListener {
public synchronized void serverStarting(final FMLServerStartingEvent event) {
mChunkLoading.serverStarting(event);
event.registerServerCommand(new CommandMath());
+ event.registerServerCommand(new CommandDebugChunks());
if (LoadedMods.Thaumcraft) {
event.registerServerCommand(new CommandDumpAspects());
}