diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2021-12-19 15:48:48 +0000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2021-12-19 15:48:48 +0000 |
commit | b230d17992013dcb5f3df142788f0cb51a72d1e0 (patch) | |
tree | c827aa09081e416ea0f0db7a99b2333410fe4d18 /src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/textures | |
parent | 998c739e50ef56e3a4cf2c4cdd397a8cdfbeef6d (diff) | |
download | GT5-Unofficial-b230d17992013dcb5f3df142788f0cb51a72d1e0.tar.gz GT5-Unofficial-b230d17992013dcb5f3df142788f0cb51a72d1e0.tar.bz2 GT5-Unofficial-b230d17992013dcb5f3df142788f0cb51a72d1e0.zip |
Added Advanced Air Intake Hatch.
Added Reservoir Hatch.
Refactored Air Intake Hatch into a base class.
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/textures')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java index 518ffe0eae..8b372dff0c 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/textures/TexturesGtBlock.java @@ -445,6 +445,8 @@ public class TexturesGtBlock { private static final CustomIcon Internal_Overlay_Oil = new CustomIcon("TileEntities/adv_machine_oil"); public static final CustomIcon Overlay_Oil = Internal_Overlay_Oil; + private static final CustomIcon Internal_Overlay_Water = new CustomIcon("TileEntities/adv_machine_water"); + public static final CustomIcon Overlay_Water = Internal_Overlay_Water; private static final CustomIcon Internal_Overlay_UU_Matter = new CustomIcon("TileEntities/adv_machine_uum"); public static final CustomIcon Overlay_UU_Matter = Internal_Overlay_UU_Matter; |