diff options
author | Glease <4586901+Glease@users.noreply.github.com> | 2021-11-16 02:00:00 +0800 |
---|---|---|
committer | Glease <4586901+Glease@users.noreply.github.com> | 2021-11-16 02:11:07 +0800 |
commit | 199ec48f853f55a78124a5ccbcd00f521de2d3aa (patch) | |
tree | b6bc10a8a0f3305ea5f960b8640d7bb20f170b2b /src/main/java/gregtech/common/misc | |
parent | 985f240b0e62d43f617da66eab06808ab45f7a5d (diff) | |
download | GT5-Unofficial-199ec48f853f55a78124a5ccbcd00f521de2d3aa.tar.gz GT5-Unofficial-199ec48f853f55a78124a5ccbcd00f521de2d3aa.tar.bz2 GT5-Unofficial-199ec48f853f55a78124a5ccbcd00f521de2d3aa.zip |
underground oil and pollution persistence form rework
Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/common/misc')
-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); |