aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/misc/GT_Command.java
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2021-11-16 15:58:07 +0100
committerGitHub <noreply@github.com>2021-11-16 15:58:07 +0100
commit2265c1f0d2038dd1345146a1b9aecadcf5f48d58 (patch)
tree5752aa2e16c341f2df3ed6a22adeb72e8c2892ba /src/main/java/gregtech/common/misc/GT_Command.java
parentd67f01dacdcf50d7ba7ce4fa48a3dda175669c69 (diff)
parent0fae19ee0ac73500b8a141c002789594f0fdd354 (diff)
downloadGT5-Unofficial-2265c1f0d2038dd1345146a1b9aecadcf5f48d58.tar.gz
GT5-Unofficial-2265c1f0d2038dd1345146a1b9aecadcf5f48d58.tar.bz2
GT5-Unofficial-2265c1f0d2038dd1345146a1b9aecadcf5f48d58.zip
Merge pull request #733 from GTNewHorizons/patch-uo
Underground oil and pollution persistence form rework
Diffstat (limited to 'src/main/java/gregtech/common/misc/GT_Command.java')
-rw-r--r--src/main/java/gregtech/common/misc/GT_Command.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/misc/GT_Command.java b/src/main/java/gregtech/common/misc/GT_Command.java
index 13e26353d8..4f6f77ea70 100644
--- a/src/main/java/gregtech/common/misc/GT_Command.java
+++ b/src/main/java/gregtech/common/misc/GT_Command.java
@@ -61,7 +61,7 @@ public final class GT_Command extends CommandBase {
} else if (test.equals("toggle")) {
String test1 = ss[1].trim();
Stream.of("D1", "D2", "debugCleanroom", "debugDriller", "debugBlockPump", "debugBlockMiner", "debugWorldGen", "debugEntityCramming",
- "debugOrevein", "debugSmallOres", "debugStones", "debugChunkloaders", "debugMulti")
+ "debugOrevein", "debugSmallOres", "debugStones", "debugChunkloaders", "debugMulti", "debugWorldData")
.filter(s -> test1.isEmpty() || s.startsWith(test1))
.forEach(l::add);