aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/GT_Mod.java
diff options
context:
space:
mode:
authorbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2018-08-31 04:23:47 +0200
committerbartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com>2018-08-31 04:23:47 +0200
commit4f73acc83a6e7c051efa4393d3734155c287c669 (patch)
tree5d7f044f297bdca08540421a7231ecab3689dc38 /src/main/java/gregtech/GT_Mod.java
parent9a31bb81bfe903af44d55fb2870ae996a42f32bd (diff)
downloadGT5-Unofficial-4f73acc83a6e7c051efa4393d3734155c287c669.tar.gz
GT5-Unofficial-4f73acc83a6e7c051efa4393d3734155c287c669.tar.bz2
GT5-Unofficial-4f73acc83a6e7c051efa4393d3734155c287c669.zip
added config option to allow broken recipe map for debug purposes
Diffstat (limited to 'src/main/java/gregtech/GT_Mod.java')
-rw-r--r--src/main/java/gregtech/GT_Mod.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gregtech/GT_Mod.java b/src/main/java/gregtech/GT_Mod.java
index 9798dc2d7e..2a3dffc3ce 100644
--- a/src/main/java/gregtech/GT_Mod.java
+++ b/src/main/java/gregtech/GT_Mod.java
@@ -226,8 +226,10 @@ public class GT_Mod implements IGT_Mod {
gregtechproxy.onPreLoad();
GT_Log.out.println("GT_Mod: Setting Configs");
+
GT_Values.D1 = tMainConfig.get(aTextGeneral, "Debug", false).getBoolean(false);
GT_Values.D2 = tMainConfig.get(aTextGeneral, "Debug2", false).getBoolean(false);
+ GT_Values.allow_broken_recipemap = tMainConfig.get(aTextGeneral, "debug allow broken recipemap",false).getBoolean(false);
GT_Values.debugCleanroom = tMainConfig.get(aTextGeneral, "debugCleanroom", false).getBoolean(false);
GT_Values.debugDriller = tMainConfig.get(aTextGeneral, "debugDriller", false).getBoolean(false);
GT_Values.debugWorldGen = tMainConfig.get(aTextGeneral, "debugWorldGen", false).getBoolean(false);