diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-06-29 19:24:32 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-06-29 19:24:32 +1000 |
commit | f0418333ed443ceddf78c7658737dac697462b59 (patch) | |
tree | 87f05e08af154dccc1cb68fb387d37ee5351f4e4 /src/Java/miscutil/gregtech/common | |
parent | 60f0d09e5f094cea82ad0e25e93934a8c0aed1be (diff) | |
download | GT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.tar.gz GT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.tar.bz2 GT5-Unofficial-f0418333ed443ceddf78c7658737dac697462b59.zip |
Think I've fixed bad textured registration.
All fluids should now have valid textures or textures missing within the <MiscUtils> domain.
Diffstat (limited to 'src/Java/miscutil/gregtech/common')
-rw-r--r-- | src/Java/miscutil/gregtech/common/Meta_GT_Proxy.java | 4 | ||||
-rw-r--r-- | src/Java/miscutil/gregtech/common/blocks/fluid/GregtechFluidHandler.java | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/Java/miscutil/gregtech/common/Meta_GT_Proxy.java b/src/Java/miscutil/gregtech/common/Meta_GT_Proxy.java index 7f8dedf08d..059a13d914 100644 --- a/src/Java/miscutil/gregtech/common/Meta_GT_Proxy.java +++ b/src/Java/miscutil/gregtech/common/Meta_GT_Proxy.java @@ -18,9 +18,9 @@ public class Meta_GT_Proxy { return addFluid(aName, aLocalized, aMaterial, aState, aTemperatureK, null, null, 0); } - public static Fluid addFluid(String aName, String aLocalized, GT_Materials cryotheum, int aState, int aTemperatureK, ItemStack aFullContainer, + public static Fluid addFluid(String aName, String aLocalized, GT_Materials aMaterial, int aState, int aTemperatureK, ItemStack aFullContainer, ItemStack aEmptyContainer, int aFluidAmount) { - return addFluid(aName, aName.toLowerCase(), aLocalized, cryotheum, null, aState, aTemperatureK, aFullContainer, aEmptyContainer, aFluidAmount); + return addFluid(aName, aName.toLowerCase(), aLocalized, aMaterial, null, aState, aTemperatureK, aFullContainer, aEmptyContainer, aFluidAmount); } public static Fluid addFluid(String aName, String aTexture, String aLocalized, GT_Materials aMaterial, short[] aRGBa, int aState, int aTemperatureK, diff --git a/src/Java/miscutil/gregtech/common/blocks/fluid/GregtechFluidHandler.java b/src/Java/miscutil/gregtech/common/blocks/fluid/GregtechFluidHandler.java index bfea3b93d3..8483d1f96f 100644 --- a/src/Java/miscutil/gregtech/common/blocks/fluid/GregtechFluidHandler.java +++ b/src/Java/miscutil/gregtech/common/blocks/fluid/GregtechFluidHandler.java @@ -28,7 +28,8 @@ 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); */ - Meta_GT_Proxy.addFluid("gelidcryotheum", "Gelid Cryotheum", GT_Materials.Cryotheum, 1, 400, GT_OreDictUnificator.get(OrePrefixes.cell, GT_Materials.Cryotheum, 1L), ItemList.Cell_Empty.get(1L, new Object[0]), 1000); + 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, 1200, GT_OreDictUnificator.get(OrePrefixes.cell, GT_Materials.Pyrotheum, 1L), ItemList.Cell_Empty.get(1L, new Object[0]), 1000); } |