From 41eb02602c8a6d5899b3e375572ee9990a5a752b Mon Sep 17 00:00:00 2001 From: Jordan Byrne Date: Mon, 26 Feb 2018 08:08:00 +1000 Subject: % Made all GTNH recipes use cheaper circuits for all recipes I add. % Recipe tweaks. % Tried to fluorite ore not having correct recipe outputs during ore processing. (This is still broken due to an invalid output) $ Fixed old fluorite ore not having a valid shapeless recipe. $ Fixed all custom ores trying to register static textures. $ Fixed plugin loading system not registering plugins, I think? $ Fixed missing texture for Nitro Fix. --- src/Java/gtPlusPlus/core/recipe/common/CI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core/recipe/common') diff --git a/src/Java/gtPlusPlus/core/recipe/common/CI.java b/src/Java/gtPlusPlus/core/recipe/common/CI.java index 4c7e6e3652..9010f9ba4b 100644 --- a/src/Java/gtPlusPlus/core/recipe/common/CI.java +++ b/src/Java/gtPlusPlus/core/recipe/common/CI.java @@ -268,7 +268,7 @@ public class CI { } } else { - return getTieredCircuitOreDictName(tier); + return getTieredCircuitOreDictName((CORE.GTNH && tier >= 6 ? tier - 1 : tier)); } return _NULL; } -- cgit