diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-26 10:30:40 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-26 10:30:40 +1000 |
commit | f20f36779767e4318ad12b9bc464f1f8010eb42b (patch) | |
tree | 72aad8ca3cc505c2797f2a2409a4b156b6d1241a /src/Java/gtPlusPlus/core/recipe | |
parent | fccb5447bc424c482f45d3d41e037bdbbd99d823 (diff) | |
download | GT5-Unofficial-f20f36779767e4318ad12b9bc464f1f8010eb42b.tar.gz GT5-Unofficial-f20f36779767e4318ad12b9bc464f1f8010eb42b.tar.bz2 GT5-Unofficial-f20f36779767e4318ad12b9bc464f1f8010eb42b.zip |
$ Fixed a minor oversight regarding MAX tier components in GTNH.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java index 8552dd4782..fd513809ed 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_MachineComponents.java @@ -101,7 +101,9 @@ public class RECIPES_MachineComponents { } else { onlyULVComponents(); - onlyMaxComponents(); + if (!CORE.GTNH) { + onlyMaxComponents(); + } } gregtechMachinePhase(); } |