diff options
author | draknyte1 <draknyte1@hotmail.com> | 2017-02-26 09:30:53 +1000 |
---|---|---|
committer | draknyte1 <draknyte1@hotmail.com> | 2017-02-26 09:30:53 +1000 |
commit | 25f34623fec2025c9a72c88f4ff1a0cbe9889b65 (patch) | |
tree | 596491b7e73337b79db2246a09f546fb23bd54ea | |
parent | 96eced229ac91d9cb9a4925414524560889218d6 (diff) | |
download | GT5-Unofficial-25f34623fec2025c9a72c88f4ff1a0cbe9889b65.tar.gz GT5-Unofficial-25f34623fec2025c9a72c88f4ff1a0cbe9889b65.tar.bz2 GT5-Unofficial-25f34623fec2025c9a72c88f4ff1a0cbe9889b65.zip |
$ Fixed an issue where lots of materials generated ItemStack outputs of > 64.
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java index 6982ee8157..16ad1efab6 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java @@ -88,7 +88,7 @@ public class RecipeGen_ShapedCrafting implements Runnable{ } - final int tVoltageMultiplier = material.getMeltingPointK() >= 1600 ? 60 : 15; + /*final int tVoltageMultiplier = material.getMeltingPointK() >= 1600 ? 60 : 15; //Add a shapeless recipe for each dust this way - Compat mode. @@ -114,7 +114,7 @@ public class RecipeGen_ShapedCrafting implements Runnable{ Utils.LOG_WARNING("Shapeless Crafting Recipe: "+material.getLocalizedName()+" - Failed"); } } - } + } */ //Shaped Recipe - Bolts |