aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders
diff options
context:
space:
mode:
authorDavid Vierra <codewarrior@hawaii.rr.com>2018-04-07 04:12:37 -1000
committerGitHub <noreply@github.com>2018-04-07 04:12:37 -1000
commit272c7f6ce1c48ea9c2d658405ed4bcc8d764678b (patch)
tree2a535cd8b9070a421a5db9c184e2e635f47b03de /src/Java/gtPlusPlus/xmod/gregtech/loaders
parentb8b592220b7c568bc46402b112696a66c8208deb (diff)
downloadGT5-Unofficial-272c7f6ce1c48ea9c2d658405ed4bcc8d764678b.tar.gz
GT5-Unofficial-272c7f6ce1c48ea9c2d658405ed4bcc8d764678b.tar.bz2
GT5-Unofficial-272c7f6ce1c48ea9c2d658405ed4bcc8d764678b.zip
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);