diff options
| author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-31 02:41:54 +1000 |
|---|---|---|
| committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-31 02:41:54 +1000 |
| commit | 59cdc42e440a8b6cd1e4519659a12030348a29db (patch) | |
| tree | fbef4823d82618f259eb9e98926371649dcdec23 /src/Java/gtPlusPlus/xmod/gregtech/loaders | |
| parent | d4a8c5390c9b169159aab9827b07bd045208da50 (diff) | |
| download | GT5-Unofficial-59cdc42e440a8b6cd1e4519659a12030348a29db.tar.gz GT5-Unofficial-59cdc42e440a8b6cd1e4519659a12030348a29db.tar.bz2 GT5-Unofficial-59cdc42e440a8b6cd1e4519659a12030348a29db.zip | |
$ Fixed an issue with Fluid solidifier recipes consuming their mold. Thanks to iuytrewetyu for noticing this issue.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java | 6 |
1 files changed, 3 insertions, 3 deletions
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 |
