diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-10-22 14:44:26 +0100 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-10-22 14:44:26 +0100 |
commit | 75c1298c4b0e7b0024828d42e05cf03f4b9136bf (patch) | |
tree | 783309aa11b860567bae858e4f1a97fd461f6d07 /src/Java/gtPlusPlus/xmod/gregtech/loaders | |
parent | 9dfe88fb1a39b03bcd418409692938cb4ff557f1 (diff) | |
download | GT5-Unofficial-75c1298c4b0e7b0024828d42e05cf03f4b9136bf.tar.gz GT5-Unofficial-75c1298c4b0e7b0024828d42e05cf03f4b9136bf.tar.bz2 GT5-Unofficial-75c1298c4b0e7b0024828d42e05cf03f4b9136bf.zip |
- 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.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Recycling.java | 2 |
1 files changed, 1 insertions, 1 deletions
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<OrePrefixes, ItemStack> validPrefix : mValidPairs) { try { - if (material.getState() != MaterialState.SOLID){ + if (material.getState() != MaterialState.SOLID || validPrefix.getKey() == OrePrefixes.ingotHot){ continue; } |