aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2018-04-08 16:01:58 +1000
committerGitHub <noreply@github.com>2018-04-08 16:01:58 +1000
commitf3fcd63ca2add8af89cd51a8d83ef38f9e732a5f (patch)
tree2a535cd8b9070a421a5db9c184e2e635f47b03de /src/Java/gtPlusPlus/xmod/gregtech/loaders
parentb8b592220b7c568bc46402b112696a66c8208deb (diff)
parent272c7f6ce1c48ea9c2d658405ed4bcc8d764678b (diff)
downloadGT5-Unofficial-f3fcd63ca2add8af89cd51a8d83ef38f9e732a5f.tar.gz
GT5-Unofficial-f3fcd63ca2add8af89cd51a8d83ef38f9e732a5f.tar.bz2
GT5-Unofficial-f3fcd63ca2add8af89cd51a8d83ef38f9e732a5f.zip
Merge pull request #249 from codewarrior0/patch-6
Fix alloy smelter recipes consuming molds
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java6
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 e3dc240995..f405c8b5c6 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_AlloySmelter.java
@@ -24,7 +24,7 @@ public class RecipeGen_AlloySmelter implements Runnable{
//Nuggets
GT_Values.RA.addAlloySmelterRecipe(
material.getIngot(1),
- ItemList.Shape_Mold_Nugget.get(1),
+ ItemList.Shape_Mold_Nugget.get(0),
material.getNugget(9),
(int) Math.max(material.getMass() * 2L, 1L),
2 * tVoltageMultiplier);
@@ -32,7 +32,7 @@ public class RecipeGen_AlloySmelter implements Runnable{
//Gears
GT_Values.RA.addAlloySmelterRecipe(
material.getIngot(8),
- ItemList.Shape_Mold_Gear.get(1),
+ ItemList.Shape_Mold_Gear.get(0),
material.getGear(1),
(int) Math.max(material.getMass() * 2L, 1L),
2 * tVoltageMultiplier);
@@ -40,7 +40,7 @@ public class RecipeGen_AlloySmelter implements Runnable{
//Ingot
GT_Values.RA.addAlloySmelterRecipe(
material.getNugget(9),
- ItemList.Shape_Mold_Ingot.get(1),
+ ItemList.Shape_Mold_Ingot.get(0),
material.getIngot(1),
(int) Math.max(material.getMass() * 2L, 1L),
2 * tVoltageMultiplier);