diff options
Diffstat (limited to 'src/Java/miscutil/xmod/gregtech/common/blocks/textures')
-rw-r--r-- | src/Java/miscutil/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/Java/miscutil/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java b/src/Java/miscutil/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java index 0b2ef3f620..c304c3edf6 100644 --- a/src/Java/miscutil/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java +++ b/src/Java/miscutil/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java @@ -46,7 +46,14 @@ public class CasingTextureHandler { return Textures.BlockIcons.MACHINE_CASING_DRAGONEGG.getIcon(); //Iron Blast Fuance Textures case 10: - return Textures.BlockIcons.MACHINE_CASING_SOLID_STEEL.getIcon(); + return Textures.BlockIcons.MACHINE_CASING_SOLID_STEEL.getIcon(); + + //Reactor Casing I + case 12: + return Textures.BlockIcons.MACHINE_CASING_CLEAN_STAINLESSSTEEL.getIcon(); + //Reactor Casing II + case 13: + return Textures.BlockIcons.MACHINE_CASING_ROBUST_TUNGSTENSTEEL.getIcon(); default: return Textures.BlockIcons.MACHINE_CASING_RADIOACTIVEHAZARD.getIcon(); |