From 53021d7bef61f4b27fa2c6453f422c2cebcfcbeb Mon Sep 17 00:00:00 2001 From: Alkalus Date: Sun, 17 Sep 2017 13:49:22 +1000 Subject: + Added Large Ore Washing Plant. + Added Red-Steel casing. + More additions to Thermal Centrifuge. + Added Wash-Plant and Large Thermal Centrifuge casings. % Refactored config option 'enableMachine_ThermalBoiler' to be 'enableMultiblock_ThermalBoiler'. --- .../xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java | 5 ++--- .../xmod/gregtech/common/blocks/textures/TexturesGtBlock.java | 2 ++ 2 files changed, 4 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java index 4c5bfebd81..33dfc73efa 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java @@ -9,7 +9,7 @@ public class CasingTextureHandler2 { switch (aMeta) { //Centrifuge case 0: - return TexturesGtBlock.Casing_Machine_Dimensional_Adv.getIcon(); + return TexturesGtBlock.Casing_Material_RedSteel.getIcon(); //Coke Oven Frame case 1: return TexturesGtBlock.Casing_Material_HastelloyX.getIcon(); @@ -21,8 +21,7 @@ public class CasingTextureHandler2 { return TexturesGtBlock.Casing_Material_Fluid_IncoloyDS.getIcon(); //Material Press Casings case 4: - return TexturesGtBlock.Casing_Machine_Farm_Manager.getIcon(); - + return TexturesGtBlock.Casing_Material_Grisium.getIcon(); //Sifter Structural case 5: return TexturesGtBlock.Casing_Machine_Metal_Panel_A.getIcon(); diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java index 44963d0238..4e5eaa53a0 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java @@ -97,6 +97,8 @@ public class TexturesGtBlock { private static final CustomIcon Internal_Casing_Grisium = new CustomIcon("TileEntities/MACHINE_CASING_STABLE_GRISIUM"); public static final CustomIcon Casing_Material_Grisium = Internal_Casing_Grisium; + private static final CustomIcon Internal_Casing_RedSteel = new CustomIcon("TileEntities/MACHINE_CASING_STABLE_RED_STEEL"); + public static final CustomIcon Casing_Material_RedSteel = Internal_Casing_RedSteel; private static final CustomIcon Internal_Casing_Incoloy020 = new CustomIcon("TileEntities/MACHINE_CASING_STABLE_INCOLOY_020"); public static final CustomIcon Casing_Material_Incoloy020 = Internal_Casing_Incoloy020; private static final CustomIcon Internal_Casing_IncoloyDS = new CustomIcon("TileEntities/MACHINE_CASING_STABLE_INCOLOY_DS"); -- cgit