diff options
author | Martin Robertz <dream-master@gmx.net> | 2018-09-01 23:27:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-01 23:27:23 +0200 |
commit | a5ec7adb43dd4ace210eb9f034b6453bf6683e21 (patch) | |
tree | 94eaab6cc02446517987fa4394735888514d9b1e /src/main/java/gregtech/api/enums | |
parent | 91cfac53ba75ca50b27dafe6448b9fbff96e671d (diff) | |
parent | 4f73acc83a6e7c051efa4393d3734155c287c669 (diff) | |
download | GT5-Unofficial-a5ec7adb43dd4ace210eb9f034b6453bf6683e21.tar.gz GT5-Unofficial-a5ec7adb43dd4ace210eb9f034b6453bf6683e21.tar.bz2 GT5-Unofficial-a5ec7adb43dd4ace210eb9f034b6453bf6683e21.zip |
Merge pull request #140 from GTNewHorizons/bartimaeusnek-fixes
added config option to allow broken recipe map for debug purposes
Diffstat (limited to 'src/main/java/gregtech/api/enums')
-rw-r--r-- | src/main/java/gregtech/api/enums/GT_Values.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/enums/GT_Values.java b/src/main/java/gregtech/api/enums/GT_Values.java index ca3fe505bf..f36ea881d8 100644 --- a/src/main/java/gregtech/api/enums/GT_Values.java +++ b/src/main/java/gregtech/api/enums/GT_Values.java @@ -170,4 +170,9 @@ public class GT_Values { * If you have to give something a World Parameter but there is no World... (Dummy World) */ public static World DW; + + /** + * This will prevent NEI from crashing but spams the Log. + */ + public static boolean allow_broken_recipemap = false; } |