aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlueHero233 <87818077+BlueHero233@users.noreply.github.com>2024-10-13 12:48:34 -0300
committerGitHub <noreply@github.com>2024-10-13 15:48:34 +0000
commitf68502bd02bbffeec3434c593ef15bafb2079054 (patch)
tree9a9571b522e4004dc69027ce19fb7b9a82342edc
parenta9101c66b6364a925221e0463d36b7a10716bf5a (diff)
downloadGT5-Unofficial-f68502bd02bbffeec3434c593ef15bafb2079054.tar.gz
GT5-Unofficial-f68502bd02bbffeec3434c593ef15bafb2079054.tar.bz2
GT5-Unofficial-f68502bd02bbffeec3434c593ef15bafb2079054.zip
Pyrolyse oven controller having transparent texture in dev fix (#3352)
Co-authored-by: Martin Robertz <dream-master@gmx.net>
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/MTEPyrolyseOven.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTEPyrolyseOven.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTEPyrolyseOven.java
index 45d4c1931a..9044c0b6e9 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/MTEPyrolyseOven.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTEPyrolyseOven.java
@@ -122,7 +122,7 @@ public class MTEPyrolyseOven extends MTEEnhancedMultiBlockBase<MTEPyrolyseOven>
public ITexture[] getTexture(IGregTechTileEntity baseMetaTileEntity, ForgeDirection sideDirection,
ForgeDirection facingDirection, int colorIndex, boolean active, boolean redstoneLevel) {
if (sideDirection == facingDirection) {
- if (active) return new ITexture[] { BlockIcons.casingTexturePages[8][66], TextureFactory.builder()
+ if (active) return new ITexture[] { BlockIcons.casingTexturePages[0][0], TextureFactory.builder()
.addIcon(OVERLAY_FRONT_PYROLYSE_OVEN_ACTIVE)
.extFacing()
.build(),
@@ -131,7 +131,7 @@ public class MTEPyrolyseOven extends MTEEnhancedMultiBlockBase<MTEPyrolyseOven>
.extFacing()
.glow()
.build() };
- return new ITexture[] { BlockIcons.casingTexturePages[8][66], TextureFactory.builder()
+ return new ITexture[] { BlockIcons.casingTexturePages[0][0], TextureFactory.builder()
.addIcon(OVERLAY_FRONT_PYROLYSE_OVEN)
.extFacing()
.build(),
@@ -141,7 +141,7 @@ public class MTEPyrolyseOven extends MTEEnhancedMultiBlockBase<MTEPyrolyseOven>
.glow()
.build() };
}
- return new ITexture[] { Textures.BlockIcons.casingTexturePages[8][66] };
+ return new ITexture[] { Textures.BlockIcons.casingTexturePages[0][0] };
}
@Override