diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-08-30 13:55:28 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-08-30 13:55:28 +1000 |
commit | 689bea77fb8d93cecc0a1298772614068ed621d3 (patch) | |
tree | e46e85ccd6e654a9a7872f0f4c853465bfec3d7b /src/Java/miscutil/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java | |
parent | 451cb42da1c02cae5cd34cb79cd930f29fc78e9d (diff) | |
download | GT5-Unofficial-689bea77fb8d93cecc0a1298772614068ed621d3.tar.gz GT5-Unofficial-689bea77fb8d93cecc0a1298772614068ed621d3.tar.bz2 GT5-Unofficial-689bea77fb8d93cecc0a1298772614068ed621d3.zip |
$ Fixed Thermal Foundation fluids always loading, even if Thermal Foundation is already present.
+ Added more Backpacks.
% Changed backpack names and OreDict values.
Diffstat (limited to 'src/Java/miscutil/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java')
-rw-r--r-- | src/Java/miscutil/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Java/miscutil/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java b/src/Java/miscutil/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java index ff6f3ae01a..6c3cdcad87 100644 --- a/src/Java/miscutil/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java +++ b/src/Java/miscutil/xmod/gregtech/common/blocks/fluid/GregtechFluidHandler.java @@ -3,6 +3,7 @@ package miscutil.xmod.gregtech.common.blocks.fluid; import gregtech.api.enums.ItemList; import gregtech.api.enums.OrePrefixes; import gregtech.api.util.GT_OreDictUnificator; +import miscutil.core.lib.LoadedMods; import miscutil.core.util.Utils; import miscutil.xmod.gregtech.api.enums.GregtechOrePrefixes.GT_Materials; import miscutil.xmod.gregtech.common.Meta_GT_Proxy; @@ -29,11 +30,13 @@ public class GregtechFluidHandler { Meta_GT_Proxy.addFluid("mcguffium", "Mc Guffium 239", Materials.McGuffium239, 1, 295, GT_OreDictUnificator.get(OrePrefixes.cell, Materials.McGuffium239, 1L), ItemList.Cell_Empty.get(1L, new Object[0]), 1000); Meta_GT_Proxy.addFluid("glue", "Glue", Materials.Glue, 1, 295, GT_OreDictUnificator.get(OrePrefixes.cell, Materials.Glue, 1L), ItemList.Cell_Empty.get(1L, new Object[0]), 1000); */ + + if (!LoadedMods.ThermalFoundation){ Utils.LOG_INFO("Adding Gregtech versions of Gelic Cryotheum and Blazing Pyrotheum."); Meta_GT_Proxy.addFluid("cryotheum", "Gelid Cryotheum", GT_Materials.Cryotheum, 4, -1200, GT_OreDictUnificator.get(OrePrefixes.cell, GT_Materials.Cryotheum, 1L), ItemList.Cell_Empty.get(1L, new Object[0]), 1000); Meta_GT_Proxy.addFluid("pyrotheum", "Blazing Pyrotheum", GT_Materials.Pyrotheum, 4, 4000, GT_OreDictUnificator.get(OrePrefixes.cell, GT_Materials.Pyrotheum, 1L), ItemList.Cell_Empty.get(1L, new Object[0]), 1000); - + } } } |