aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-17 13:49:22 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-17 13:49:22 +1000
commit53021d7bef61f4b27fa2c6453f422c2cebcfcbeb (patch)
tree4059d2872491c2e281a47f8f76da87012bb557ef /src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures
parent7ae611f8f4ed08e1a75813a09d3dd9850c942fb0 (diff)
downloadGT5-Unofficial-53021d7bef61f4b27fa2c6453f422c2cebcfcbeb.tar.gz
GT5-Unofficial-53021d7bef61f4b27fa2c6453f422c2cebcfcbeb.tar.bz2
GT5-Unofficial-53021d7bef61f4b27fa2c6453f422c2cebcfcbeb.zip
+ 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'.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler2.java5
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java2
2 files changed, 4 insertions, 3 deletions
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");