diff options
Diffstat (limited to 'src')
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 Binary files differnew file mode 100644 index 0000000000..8e4d56f3be --- /dev/null +++ b/src/main/resources/assets/gregtech/textures/blocks/iconsets/FLUID_STEAM_IN_SIGN.png |