diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-11 16:34:30 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-11 16:34:30 +1000 |
commit | a6e89027a76f1a1d510803733dcceb33bd3dfcb7 (patch) | |
tree | 8fb0cc4232eb03e6bf51f2a5dc25beb15836ab30 /src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures | |
parent | 55678a146fd8faa84eda81a6220a7bb81952d745 (diff) | |
download | GT5-Unofficial-a6e89027a76f1a1d510803733dcceb33bd3dfcb7.tar.gz GT5-Unofficial-a6e89027a76f1a1d510803733dcceb33bd3dfcb7.tar.bz2 GT5-Unofficial-a6e89027a76f1a1d510803733dcceb33bd3dfcb7.zip |
+ Re-added the Multitank without a recipe for testing in creative.
+ Gave the multitank it's own casings and textures.
$ Fixed a case where I used Materials.VALUES instead of Materials.values() to improve GT 5.9 compat.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java index 1e7f3c157e..19210eea8a 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/CasingTextureHandler.java @@ -47,7 +47,9 @@ public class CasingTextureHandler { //Iron Blast Fuance Textures case 10: return Textures.BlockIcons.MACHINE_CASING_SOLID_STEEL.getIcon(); - + //Multitank Exterior Casing + case 11: + return Textures.BlockIcons.MACHINE_CASING_GRATE.getIcon(); //Reactor Casing I case 12: return Textures.BlockIcons.MACHINE_CASING_CLEAN_STAINLESSSTEEL.getIcon(); |