diff options
| author | Blood-Asp <bloodasphendrik@gmail.com> | 2017-06-14 13:47:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-14 13:47:08 +0200 |
| commit | b15f0d2c0bb32424c6b9d279ccccfce60f4b328f (patch) | |
| tree | 0353bb8a5d55c402265a7394e3df4b4e2f1ebe55 /src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java | |
| parent | 96b1cb31ced61270a1289da6da4cdd99f75eeb3a (diff) | |
| parent | d1eea59fe744c1b5b2c5dae324b6887f985a6569 (diff) | |
| download | GT5-Unofficial-b15f0d2c0bb32424c6b9d279ccccfce60f4b328f.tar.gz GT5-Unofficial-b15f0d2c0bb32424c6b9d279ccccfce60f4b328f.tar.bz2 GT5-Unofficial-b15f0d2c0bb32424c6b9d279ccccfce60f4b328f.zip | |
Merge pull request #1091 from draknyte1/unstable
Made the Cleanroom optional.
Diffstat (limited to 'src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java')
| -rw-r--r-- | src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java b/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java index 8769878ac1..e72bd2b4cd 100644 --- a/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java +++ b/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java @@ -220,7 +220,7 @@ public class GT_NEI_DefaultHandler int tSpecial = ((CachedDefaultRecipe) this.arecipes.get(aRecipeIndex)).mRecipe.mSpecialValue;
if (tSpecial == -100 && GT_Mod.gregtechproxy.mLowGravProcessing) {
drawText(10, 123, trans("159","Needs Low Gravity"), -16777216);
- } else if (tSpecial == -200) {
+ } else if (tSpecial == -200 && GT_Mod.gregtechproxy.mEnableCleanroom) {
drawText(10, 123, trans("160","Needs Cleanroom"), -16777216);
} else if ((GT_Utility.isStringValid(this.mRecipeMap.mNEISpecialValuePre)) || (GT_Utility.isStringValid(this.mRecipeMap.mNEISpecialValuePost))) {
drawText(10, 123, this.mRecipeMap.mNEISpecialValuePre + tSpecial * this.mRecipeMap.mNEISpecialValueMultiplier + this.mRecipeMap.mNEISpecialValuePost, -16777216);
|
