diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/MTEPyrolyseOven.java | 6 |
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 |