From 59cdc42e440a8b6cd1e4519659a12030348a29db Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 31 Dec 2016 02:41:54 +1000 Subject: $ Fixed an issue with Fluid solidifier recipes consuming their mold. Thanks to iuytrewetyu for noticing this issue. --- .../gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java index fd9c1b722e..e986a4283c 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java @@ -173,7 +173,7 @@ public class RecipeGen_DustGeneration implements Runnable{ //Making Shapes from fluid if (GT_Values.RA.addFluidSolidifierRecipe( - ItemList.Shape_Mold_Ingot.get(1), //Item Shape + ItemList.Shape_Mold_Ingot.get(0), //Item Shape material.getFluid(144), //Fluid Input material.getIngot(1), //output 1*20, //Duration @@ -197,7 +197,7 @@ public class RecipeGen_DustGeneration implements Runnable{ Utils.LOG_WARNING("144l fluid molder for 1 plate Recipe: "+material.getLocalizedName()+" - Failed"); } if (GT_Values.RA.addFluidSolidifierRecipe( - ItemList.Shape_Mold_Nugget.get(1), //Item Shape + ItemList.Shape_Mold_Nugget.get(0), //Item Shape material.getFluid(16), //Fluid Input material.getNugget(1), //output 1*20, //Duration @@ -209,7 +209,7 @@ public class RecipeGen_DustGeneration implements Runnable{ Utils.LOG_WARNING("16l fluid molder for 1 nugget Recipe: "+material.getLocalizedName()+" - Failed"); } if (GT_Values.RA.addFluidSolidifierRecipe( - ItemList.Shape_Mold_Block.get(1), //Item Shape + ItemList.Shape_Mold_Block.get(0), //Item Shape material.getFluid(144*9), //Fluid Input material.getBlock(1), //output 1*20, //Duration -- cgit