aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/thermalfoundation/fluid
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-04-30 00:13:36 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-04-30 00:13:36 +1000
commit568f05651e187e9bd7af44d72742665ebcee274f (patch)
treed5a3ce884b0d9b1c49e6378ff59f169a0695ea53 /src/Java/gtPlusPlus/xmod/thermalfoundation/fluid
parentc2f45087c471dc57ef08bf3b22e98c619960daad (diff)
downloadGT5-Unofficial-568f05651e187e9bd7af44d72742665ebcee274f.tar.gz
GT5-Unofficial-568f05651e187e9bd7af44d72742665ebcee274f.tar.bz2
GT5-Unofficial-568f05651e187e9bd7af44d72742665ebcee274f.zip
+ Added Resonant Ender.
$ Fixed COFH Fluids having incorrect textures. $ Fixed the recipe for Clay plates not auto-generating.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/thermalfoundation/fluid')
-rw-r--r--src/Java/gtPlusPlus/xmod/thermalfoundation/fluid/TF_Fluids.java12
1 files changed, 12 insertions, 0 deletions
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.");