From 86bf45662a877c8ce9ca9551b41c789c098dc698 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Tue, 15 Jan 2019 15:19:05 +0000 Subject: + Added recipes for the control cores and the respective module for multiblocks. + Added recipes for the Circuit Programmer, Lead Lined Chest & the RTG. % Adjust Computer Cube recipe to now require an assembler. % Adjusted recipes using MAX tier machine components to use the correct parts in GTNH. % Greatly reduced EU capacity for the Computer Cube. $ Mostly finished work on the Generator Array. (Still requires some fine tuning but the general result is solid) $ Fixed a weird bug with hand-pumps, causing crashes due to an invalid offset for IIcons. --- src/Java/gtPlusPlus/core/util/minecraft/ItemUtils.java | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/Java/gtPlusPlus/core/util') diff --git a/src/Java/gtPlusPlus/core/util/minecraft/ItemUtils.java b/src/Java/gtPlusPlus/core/util/minecraft/ItemUtils.java index 90bb90f6d0..425606dd8e 100644 --- a/src/Java/gtPlusPlus/core/util/minecraft/ItemUtils.java +++ b/src/Java/gtPlusPlus/core/util/minecraft/ItemUtils.java @@ -286,6 +286,13 @@ public class ItemUtils { else { mTemp = Utils.sanitizeString(mTemp); } + + + + if (oredictName.contains("rod")) { + String s = "stick"+oredictName.substring(3); + oredictName = s; + } // Banned Materials and replacements for GT5.8 compat. -- cgit