diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-08-30 14:15:30 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-08-30 14:15:30 +1000 |
commit | 99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95 (patch) | |
tree | f7ad27e6898c01dc65116c6339446e209072d9b8 /src/Java/miscutil/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java | |
parent | 689bea77fb8d93cecc0a1298772614068ed621d3 (diff) | |
download | GT5-Unofficial-99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95.tar.gz GT5-Unofficial-99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95.tar.bz2 GT5-Unofficial-99c8ea64db96940ca8f37e5b36d8d8b5e6a53f95.zip |
+ Added Casing blocks for the future of Nuclear Power generation.
% Changed how a few log messages are presented.
Diffstat (limited to 'src/Java/miscutil/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java')
-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(); |