diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-13 21:22:33 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-13 21:22:33 +0000 |
commit | d304d49e7e835fa601accd0740b53ae06909a71e (patch) | |
tree | 6b3e2c54efaba3a2c63a9946b4f29944c737668f /src/Java/gtPlusPlus/xmod/gregtech | |
parent | bc630f3a7738e4a495cdc1672949d934f76838e3 (diff) | |
download | GT5-Unofficial-d304d49e7e835fa601accd0740b53ae06909a71e.tar.gz GT5-Unofficial-d304d49e7e835fa601accd0740b53ae06909a71e.tar.bz2 GT5-Unofficial-d304d49e7e835fa601accd0740b53ae06909a71e.zip |
$ Fixed CPI patch, which was failing due to different args present on other GT forks.
$ Fixed incorrect energy usage on Alloy Smelting recipes, they're no longer 2x.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java index aab362f6ec..7754d039cf 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java @@ -40,7 +40,7 @@ public class RecipeGen_AlloySmelter extends RecipeGen_Base { ItemList.Shape_Mold_Nugget.get(0), material.getNugget(9), (int) Math.max(material.getMass() * 2L, 1L), - 2 * tVoltageMultiplier); + tVoltageMultiplier); //Gears if (ItemUtils.checkForInvalidItems(material.getIngot(1)) && ItemUtils.checkForInvalidItems(material.getGear(1))) @@ -49,7 +49,7 @@ public class RecipeGen_AlloySmelter extends RecipeGen_Base { ItemList.Shape_Mold_Gear.get(0), material.getGear(1), (int) Math.max(material.getMass() * 2L, 1L), - 2 * tVoltageMultiplier); + tVoltageMultiplier); //Ingot if (ItemUtils.checkForInvalidItems(material.getIngot(1)) && ItemUtils.checkForInvalidItems(material.getNugget(1))) @@ -58,7 +58,7 @@ public class RecipeGen_AlloySmelter extends RecipeGen_Base { ItemList.Shape_Mold_Ingot.get(0), material.getIngot(1), (int) Math.max(material.getMass() * 2L, 1L), - 2 * tVoltageMultiplier); + tVoltageMultiplier); } |