diff options
| author | Alkalus <draknyte1@hotmail.com> | 2018-04-08 16:13:26 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-08 16:13:26 +1000 |
| commit | 6614f8e961edcf4f4dfe337b5ffe02e6b4ae3440 (patch) | |
| tree | 53bb1b97c8302abf5204d980239a1ef18af18b99 /src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java | |
| parent | 31996894fd1dd04ef4850dbc470664c5766bffb8 (diff) | |
| parent | c94c14f2fe9c7434ddc1b22a93d45e8b4aee5eb7 (diff) | |
| download | GT5-Unofficial-6614f8e961edcf4f4dfe337b5ffe02e6b4ae3440.tar.gz GT5-Unofficial-6614f8e961edcf4f4dfe337b5ffe02e6b4ae3440.tar.bz2 GT5-Unofficial-6614f8e961edcf4f4dfe337b5ffe02e6b4ae3440.zip | |
Merge pull request #244 from codewarrior0/power-substation-structure
Rewrite Power Sub-Station machine structure
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java')
| -rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java | 10 |
1 files changed, 10 insertions, 0 deletions
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 0c7a388d46..b3d751a58f 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java @@ -163,6 +163,16 @@ public class TexturesGtBlock { private static final CustomIcon Internal_Casing_Machine_Redstone_On = new CustomIcon("TileEntities/cover_redstone_emitter"); public static final CustomIcon Casing_Machine_Redstone_On = Internal_Casing_Machine_Redstone_On; + //Redox Cells + public static final CustomIcon Casing_Redox_1 = new CustomIcon("redox/redox1"); + public static final CustomIcon Casing_Redox_2 = new CustomIcon("redox/redox2"); + public static final CustomIcon Casing_Redox_3 = new CustomIcon("redox/redox3"); + public static final CustomIcon Casing_Redox_4 = new CustomIcon("redox/redox4"); + public static final CustomIcon Casing_Redox_5 = new CustomIcon("redox/redox5"); + public static final CustomIcon Casing_Redox_6 = new CustomIcon("redox/redox6"); + public static final CustomIcon Casing_Redox_7 = new CustomIcon("redox/redox7"); + public static final CustomIcon Casing_Redox_8 = new CustomIcon("redox/redox8"); + //Centrifuge Casing private static final CustomIcon Internal_Casing_Centrifuge = new CustomIcon("TileEntities/MACHINE_CASING_CENTRIFUGE"); public static final CustomIcon Casing_Material_Centrifuge = Internal_Casing_Centrifuge; |
