aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-10-20 02:52:06 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-10-20 02:52:06 +1000
commita9d22d7d85ba567cacc83e22cecae06ceb1e4936 (patch)
tree56c813c851710f32c124833d9e85fc1ddb9de83a /src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java
parentd53b08982a6d2be3cc0be4552520bfc500576f6f (diff)
downloadGT5-Unofficial-a9d22d7d85ba567cacc83e22cecae06ceb1e4936.tar.gz
GT5-Unofficial-a9d22d7d85ba567cacc83e22cecae06ceb1e4936.tar.bz2
GT5-Unofficial-a9d22d7d85ba567cacc83e22cecae06ceb1e4936.zip
$ Fixed Workbench recipe not using correct machine casing.
$ Fixed the Extruder and the Alloy smelter eating the shaping molds. $ Fixed .09 recipes for cells. % Changed the recipes for the Geothermal Engines and Rocket Engines.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java
index 6d84abe37b..627cba7064 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java
@@ -16,8 +16,8 @@ public class RecipeGen_Plates {
int tVoltageMultiplier = material.getMeltingPoint_K() >= 2800 ? 64 : 16;
ItemStack ingotStackOne = material.getIngot(1);
ItemStack ingotStackTwo = material.getIngot(2);
- ItemStack shape_Mold = ItemList.Shape_Mold_Plate.get(1);
- ItemStack shape_Extruder = ItemList.Shape_Extruder_Plate.get(1);
+ ItemStack shape_Mold = ItemList.Shape_Mold_Plate.get(0);
+ ItemStack shape_Extruder = ItemList.Shape_Extruder_Plate.get(0);
ItemStack plate_Single = material.getPlate(1);
ItemStack plate_SingleTwo = material.getPlate(2);
ItemStack plate_Double = material.getPlateDouble(1);