diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-27 04:54:01 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-27 04:54:01 +1000 |
commit | c8e9f9cca3a597a6873e4c83ac7ae80fd943b086 (patch) | |
tree | 6424bb9b9c1394ce886f7dd8d6305b82130962fe /src/Java/gtPlusPlus/xmod | |
parent | a47d4add073d3dafe6357b526ca5963466528feb (diff) | |
download | GT5-Unofficial-c8e9f9cca3a597a6873e4c83ac7ae80fd943b086.tar.gz GT5-Unofficial-c8e9f9cca3a597a6873e4c83ac7ae80fd943b086.tar.bz2 GT5-Unofficial-c8e9f9cca3a597a6873e4c83ac7ae80fd943b086.zip |
+ Added a fluid extraction recipe for Double plates and Ingots.
+ Made Lithium-7 craftable, Lithium Plates to Li7 double plates.
$ Fixed the Th232 centrifuge recipe having the incorrect output.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java index 6f0697365d..337356f1cf 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java @@ -105,6 +105,18 @@ public class RecipeGen_DustGeneration implements Runnable{ else { Utils.LOG_WARNING("144l fluid extractor from 1 Dust Recipe: "+material.getLocalizedName()+" - Failed"); } + if (GT_Values.RA.addFluidExtractionRecipe(material.getIngot(1), //Input + null, //Input 2 + material.getFluid(144), //Fluid Output + 0, //Chance + 1*20, //Duration + 16 //Eu Tick + )){ + Utils.LOG_WARNING("144l fluid extractor from 1 ingot Recipe: "+material.getLocalizedName()+" - Success"); + } + else { + Utils.LOG_WARNING("144l fluid extractor from 1 ingot Recipe: "+material.getLocalizedName()+" - Failed"); + } if (GT_Values.RA.addFluidExtractionRecipe(material.getPlate(1), //Input null, //Input 2 material.getFluid(144), //Fluid Output @@ -117,6 +129,18 @@ public class RecipeGen_DustGeneration implements Runnable{ else { Utils.LOG_WARNING("144l fluid extractor from 1 plate Recipe: "+material.getLocalizedName()+" - Failed"); } + if (GT_Values.RA.addFluidExtractionRecipe(material.getPlateDouble(1), //Input + null, //Input 2 + material.getFluid(288), //Fluid Output + 0, //Chance + 1*20, //Duration + 16 //Eu Tick + )){ + Utils.LOG_WARNING("144l fluid extractor from 1 double plate Recipe: "+material.getLocalizedName()+" - Success"); + } + else { + Utils.LOG_WARNING("144l fluid extractor from 1 double plate Recipe: "+material.getLocalizedName()+" - Failed"); + } if (GT_Values.RA.addFluidExtractionRecipe(material.getNugget(1), //Input null, //Input 2 material.getFluid(16), //Fluid Output |