diff options
author | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2018-09-08 00:39:04 +0200 |
---|---|---|
committer | bartimaeusnek <33183715+bartimaeusnek@users.noreply.github.com> | 2018-09-08 00:39:04 +0200 |
commit | b7c66bf2094dd2f03d92919c18fec9dfb04264e6 (patch) | |
tree | a767c60069d7a517b09833c896cc2de849e46498 /src/main/java/gregtech/api/enums/GT_Values.java | |
parent | 65d3cf01f28a275d186d34f5771e2ec72ccd975d (diff) | |
download | GT5-Unofficial-b7c66bf2094dd2f03d92919c18fec9dfb04264e6.tar.gz GT5-Unofficial-b7c66bf2094dd2f03d92919c18fec9dfb04264e6.tar.bz2 GT5-Unofficial-b7c66bf2094dd2f03d92919c18fec9dfb04264e6.zip |
Various fixes
+Added GT-FML-Log
+Added an Exception if a Nq reactor without recipe map is created
+Added the ability to add ReinforcedGlass in the CleanroomWalls (https://github.com/GTNewHorizons/NewHorizons/issues/3584)
+Added a config option for changing the ReinforcedGlass percentage
+Renamed Materials2 -> GTNH_ExtraMaterials and fixed it
Diffstat (limited to 'src/main/java/gregtech/api/enums/GT_Values.java')
-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 f36ea881d8..8fefe5b719 100644 --- a/src/main/java/gregtech/api/enums/GT_Values.java +++ b/src/main/java/gregtech/api/enums/GT_Values.java @@ -175,4 +175,9 @@ public class GT_Values { * This will prevent NEI from crashing but spams the Log. */ public static boolean allow_broken_recipemap = false; + + /** + * This will set the percentage how much ReinforcedGlass is Allowed in Cleanroom Walls. + */ + public static float cleanroomGlass = 5.0f; } |