diff options
| author | Richard Hendricks <richardhendricks@pobox.com> | 2018-06-05 18:25:54 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-05 18:25:54 -0500 |
| commit | 5c15ec845dd4c655a927cc02550ed964c8864655 (patch) | |
| tree | 5240e9762ea06e3ce5a4685f9ec26c7e151ff767 /src/main/java/gregtech/api/GregTech_API.java | |
| parent | 1ba415a2c3ff0e939382da84eecce7242a6f403b (diff) | |
| parent | 4ddcc361027a994a93859302322a24c6a303d6cf (diff) | |
| download | GT5-Unofficial-5c15ec845dd4c655a927cc02550ed964c8864655.tar.gz GT5-Unofficial-5c15ec845dd4c655a927cc02550ed964c8864655.tar.bz2 GT5-Unofficial-5c15ec845dd4c655a927cc02550ed964c8864655.zip | |
Merge pull request #126 from GTNewHorizons/feature/machinemetal
Added option for disabling machinemetal tinting.
Diffstat (limited to 'src/main/java/gregtech/api/GregTech_API.java')
| -rw-r--r-- | src/main/java/gregtech/api/GregTech_API.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/GregTech_API.java b/src/main/java/gregtech/api/GregTech_API.java index 150e1fb798..f5009aed66 100644 --- a/src/main/java/gregtech/api/GregTech_API.java +++ b/src/main/java/gregtech/api/GregTech_API.java @@ -199,6 +199,12 @@ public class GregTech_API { public static boolean mTranslocator = false;
public static boolean mTConstruct = false;
+ /**
+ * Option to not use MACHINE_METAL mixing into colors
+ */
+ public static boolean sUseMachineMetal = false;
+
+
public static boolean mUseOnlyGoodSolderingMaterials = false;
private static final String aTextIC2Lower = MOD_ID_IC2.toLowerCase(Locale.ENGLISH);
|
