From 568f05651e187e9bd7af44d72742665ebcee274f Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sun, 30 Apr 2017 00:13:36 +1000 Subject: + Added Resonant Ender. $ Fixed COFH Fluids having incorrect textures. $ Fixed the recipe for Clay plates not auto-generating. --- .../gtPlusPlus/xmod/thermalfoundation/fluid/TF_Fluids.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/Java/gtPlusPlus/xmod/thermalfoundation/fluid') diff --git a/src/Java/gtPlusPlus/xmod/thermalfoundation/fluid/TF_Fluids.java b/src/Java/gtPlusPlus/xmod/thermalfoundation/fluid/TF_Fluids.java index caf33ff381..40c5de8de4 100644 --- a/src/Java/gtPlusPlus/xmod/thermalfoundation/fluid/TF_Fluids.java +++ b/src/Java/gtPlusPlus/xmod/thermalfoundation/fluid/TF_Fluids.java @@ -15,6 +15,7 @@ public class TF_Fluids { public static Fluid fluidPyrotheum; public static Fluid fluidCryotheum; + public static Fluid fluidEnder; public static void preInit() { @@ -22,6 +23,7 @@ public class TF_Fluids Utils.LOG_INFO("Adding in our own versions of Thermal Foundation Fluids - Non-GT"); final Fluid pyrotheum = FluidRegistry.getFluid("pyrotheum"); final Fluid cryotheum = FluidRegistry.getFluid("cryotheum"); + final Fluid ender = FluidRegistry.getFluid("ender"); if (pyrotheum == null){ Utils.LOG_INFO("Registering Blazing Pyrotheum as it does not exist."); @@ -41,6 +43,16 @@ public class TF_Fluids Utils.LOG_INFO("Registering Gelid Cryotheum as it is an already existing Fluid."); fluidCryotheum = cryotheum; } + + if (ender == null){ + Utils.LOG_INFO("Registering Resonant Ender as it does not exist."); + fluidEnder = new Fluid("ender").setLuminosity(3).setDensity(4000).setViscosity(3000).setTemperature(300).setRarity(EnumRarity.uncommon); + registerFluid(fluidEnder, "ender"); + } + else { + Utils.LOG_INFO("Registering Resonant Ender as it is an already existing Fluid."); + fluidEnder = ender; + } } else { Utils.LOG_INFO("Thermal Foundation is already loaded, no need to add our own Cryotheum/Pyrotheum."); -- cgit