diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-11-16 15:58:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 15:58:07 +0100 |
commit | 2265c1f0d2038dd1345146a1b9aecadcf5f48d58 (patch) | |
tree | 5752aa2e16c341f2df3ed6a22adeb72e8c2892ba /src/main/java/gregtech/common/misc/GT_Command.java | |
parent | d67f01dacdcf50d7ba7ce4fa48a3dda175669c69 (diff) | |
parent | 0fae19ee0ac73500b8a141c002789594f0fdd354 (diff) | |
download | GT5-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.java | 2 |
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); |