From c8e9f9cca3a597a6873e4c83ac7ae80fd943b086 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 27 Dec 2016 04:54:01 +1000 Subject: + 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. --- .../gregtech/loaders/RecipeGen_DustGeneration.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/loaders') 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 -- cgit