From 99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 30 Aug 2016 14:15:30 +1000 Subject: + Added Casing blocks for the future of Nuclear Power generation. % Changed how a few log messages are presented. --- .../gregtech/common/blocks/textures/CasingTextureHandler.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/Java/miscutil/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java') 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(); -- cgit