aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main/java/gregtech/api/enums/Textures.java1
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/MTEHatchCustomFluidBase.java8
-rw-r--r--src/main/resources/assets/gregtech/textures/blocks/iconsets/FLUID_STEAM_IN_SIGN.pngbin0 -> 613 bytes
3 files changed, 6 insertions, 3 deletions
diff --git a/src/main/java/gregtech/api/enums/Textures.java b/src/main/java/gregtech/api/enums/Textures.java
index 7e5aedbcea..9b621059aa 100644
--- a/src/main/java/gregtech/api/enums/Textures.java
+++ b/src/main/java/gregtech/api/enums/Textures.java
@@ -544,6 +544,7 @@ public class Textures {
OVERLAY_INPUT_HATCH_2x2,
FLUID_OUT_SIGN,
FLUID_IN_SIGN,
+ FLUID_STEAM_IN_SIGN,
ITEM_IN_SIGN,
ITEM_OUT_SIGN,
OVERLAY_MUFFLER,
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/MTEHatchCustomFluidBase.java b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/MTEHatchCustomFluidBase.java
index b084651177..76555c6d8e 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/MTEHatchCustomFluidBase.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/MTEHatchCustomFluidBase.java
@@ -1,6 +1,6 @@
package gtPlusPlus.xmod.gregtech.api.metatileentity.implementations.base;
-import static gregtech.api.enums.Textures.BlockIcons.FLUID_IN_SIGN;
+import static gregtech.api.enums.Textures.BlockIcons.FLUID_STEAM_IN_SIGN;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_PIPE_IN;
import net.minecraft.entity.player.EntityPlayer;
@@ -68,14 +68,16 @@ public class MTEHatchCustomFluidBase extends MTEHatch {
@Override
public ITexture[] getTexturesActive(ITexture aBaseTexture) {
return GTMod.gregtechproxy.mRenderIndicatorsOnHatch
- ? new ITexture[] { aBaseTexture, TextureFactory.of(OVERLAY_PIPE_IN), TextureFactory.of(FLUID_IN_SIGN) }
+ ? new ITexture[] { aBaseTexture, TextureFactory.of(OVERLAY_PIPE_IN),
+ TextureFactory.of(FLUID_STEAM_IN_SIGN) }
: new ITexture[] { aBaseTexture, TextureFactory.of(OVERLAY_PIPE_IN) };
}
@Override
public ITexture[] getTexturesInactive(ITexture aBaseTexture) {
return GTMod.gregtechproxy.mRenderIndicatorsOnHatch
- ? new ITexture[] { aBaseTexture, TextureFactory.of(OVERLAY_PIPE_IN), TextureFactory.of(FLUID_IN_SIGN) }
+ ? new ITexture[] { aBaseTexture, TextureFactory.of(OVERLAY_PIPE_IN),
+ TextureFactory.of(FLUID_STEAM_IN_SIGN) }
: new ITexture[] { aBaseTexture, TextureFactory.of(OVERLAY_PIPE_IN) };
}
diff --git a/src/main/resources/assets/gregtech/textures/blocks/iconsets/FLUID_STEAM_IN_SIGN.png b/src/main/resources/assets/gregtech/textures/blocks/iconsets/FLUID_STEAM_IN_SIGN.png
new file mode 100644
index 0000000000..8e4d56f3be
--- /dev/null
+++ b/src/main/resources/assets/gregtech/textures/blocks/iconsets/FLUID_STEAM_IN_SIGN.png
Binary files differ