aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe/common
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-07-02 02:47:20 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-07-02 02:47:20 +1000
commit4a9e0f9ded8c4f2ed8a0ba3e1d32724887f6c3be (patch)
tree017deeced9e1d59e0dd4e4d5d827124272d6a58a /src/Java/gtPlusPlus/core/recipe/common
parent81360a320daf83530cc9260068e13111759d2212 (diff)
downloadGT5-Unofficial-4a9e0f9ded8c4f2ed8a0ba3e1d32724887f6c3be.tar.gz
GT5-Unofficial-4a9e0f9ded8c4f2ed8a0ba3e1d32724887f6c3be.tar.bz2
GT5-Unofficial-4a9e0f9ded8c4f2ed8a0ba3e1d32724887f6c3be.zip
+ Added extra GTNH checks on old circuit features.
- Disabled Sulfuric Chem for the time being. $ Tried to fix all the recipes I borked.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe/common')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/common/CI.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/common/CI.java b/src/Java/gtPlusPlus/core/recipe/common/CI.java
index 3758025d4a..d329a42dfc 100644
--- a/src/Java/gtPlusPlus/core/recipe/common/CI.java
+++ b/src/Java/gtPlusPlus/core/recipe/common/CI.java
@@ -239,7 +239,7 @@ public class CI {
}
public static Object getTieredCircuit(int tier){
- if (CORE.ConfigSwitches.enableOldGTcircuits && CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK){
+ if (CORE.ConfigSwitches.enableOldGTcircuits && CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK && !CORE.GTNH){
if (tier == 0){
return GregtechItemList.Old_Circuit_Primitive.get(1);
}
@@ -389,7 +389,7 @@ public class CI {
}
public static ItemStack getDataOrb(){
- if (CORE.ConfigSwitches.enableOldGTcircuits && CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK){
+ if (CORE.ConfigSwitches.enableOldGTcircuits && CORE.MAIN_GREGTECH_5U_EXPERIMENTAL_FORK && !CORE.GTNH){
return GregtechItemList.Old_Tool_DataOrb.get(1);
}
else {