From 75c1298c4b0e7b0024828d42e05cf03f4b9136bf Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Mon, 22 Oct 2018 14:44:26 +0100 Subject: - Removed Circuit Nerf for GTNH, Most recipes now have increased circuit costs. Closes #391. % Cleaned up lots of Hot Ingot code. % Made the Multi-Machine's tooltip more verbose. % Made the MK IV Fusion Reactor require MAX/UHV tier hatches, Closes #389. % Increased cost of Multi Machine controller, Closes #374. $ Fixed Hot Ingots having recycling recipes, Closes #387. $ Fixed Tooltip for Wire Factory, Closes #379. --- src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Recycling.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Recycling.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Recycling.java index 05b292f192..8e3ef4e21d 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Recycling.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Recycling.java @@ -108,7 +108,7 @@ public class RecipeGen_Recycling implements Runnable { for (final Pair validPrefix : mValidPairs) { try { - if (material.getState() != MaterialState.SOLID){ + if (material.getState() != MaterialState.SOLID || validPrefix.getKey() == OrePrefixes.ingotHot){ continue; } -- cgit