diff options
| author | Martin Robertz <dream-master@gmx.net> | 2020-03-03 19:22:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-03 19:22:14 +0100 |
| commit | 3bca4b84a8a3c146c658cb238b85658c2e3ca4f0 (patch) | |
| tree | be0e584ae0612fe3043cf3377c96063e3cbc2368 /src/main/java/gregtech/GT_Mod.java | |
| parent | 60a98a8b69a58a0cdadb38da996f9d3aa0bca252 (diff) | |
| parent | a767a4badaf285f3172cff0477acac698c5ada9f (diff) | |
| download | GT5-Unofficial-3bca4b84a8a3c146c658cb238b85658c2e3ca4f0.tar.gz GT5-Unofficial-3bca4b84a8a3c146c658cb238b85658c2e3ca4f0.tar.bz2 GT5-Unofficial-3bca4b84a8a3c146c658cb238b85658c2e3ca4f0.zip | |
Merge pull request #248 from GTNewHorizons/debug/more_debug_switches
Debug/more debug switches
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
| -rw-r--r-- | src/main/java/gregtech/GT_Mod.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java index 2d0b7257d0..967c2e897e 100644 --- a/src/main/java/gregtech/GT_Mod.java +++ b/src/main/java/gregtech/GT_Mod.java @@ -260,6 +260,9 @@ public class GT_Mod implements IGT_Mod { GT_Values.debugOrevein = tMainConfig.get(aTextGeneral, "debugOrevein", false).getBoolean(false); GT_Values.debugSmallOres = tMainConfig.get(aTextGeneral, "debugSmallOres", false).getBoolean(false); GT_Values.debugStones = tMainConfig.get(aTextGeneral, "debugStones", false).getBoolean(false); + GT_Values.debugBlockMiner = tMainConfig.get(aTextGeneral, "debugBlockMiner", false).getBoolean(false); + GT_Values.debugBlockPump = tMainConfig.get(aTextGeneral, "debugBlockPump", false).getBoolean(false); + GT_Values.debugEntityCramming = tMainConfig.get(aTextGeneral, "debugEntityCramming", false).getBoolean(false); GT_Values.oreveinPercentage = tMainConfig.get(aTextGeneral, "oreveinPercentage_100",100).getInt(100); GT_Values.oreveinAttempts = tMainConfig.get(aTextGeneral, "oreveinAttempts_64",64).getInt(64); GT_Values.oreveinMaxPlacementAttempts = tMainConfig.get(aTextGeneral, "oreveinMaxPlacementAttempts_8",8).getInt(8); |
