aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod
diff options
context:
space:
mode:
authorElkatra2 <116808419+Elkatra2@users.noreply.github.com>2024-09-03 21:48:10 +0200
committerGitHub <noreply@github.com>2024-09-03 21:48:10 +0200
commite2912eefea7f76e937c94c9df2bfe1547b24dd94 (patch)
tree3732e558997cbfc19b33ad04fcffd5f5595d9c87 /src/main/java/gtPlusPlus/xmod
parentff1b4993ab7974178fdd5a1bc112cccce51f88a1 (diff)
downloadGT5-Unofficial-e2912eefea7f76e937c94c9df2bfe1547b24dd94.tar.gz
GT5-Unofficial-e2912eefea7f76e937c94c9df2bfe1547b24dd94.tar.bz2
GT5-Unofficial-e2912eefea7f76e937c94c9df2bfe1547b24dd94.zip
Steam Hatch texture update (#3020)
* Steam Hatch texture update * apply spotless --------- Co-authored-by: Martin Robertz <dream-master@gmx.net>
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/MTEHatchCustomFluidBase.java8
1 files changed, 5 insertions, 3 deletions
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) };
}