diff options
author | Dimach <dimach2142@gmail.com> | 2017-07-07 12:36:47 +0300 |
---|---|---|
committer | Dimach <dimach2142@gmail.com> | 2017-07-07 12:36:47 +0300 |
commit | 1b50758a2e07f7ec05e08a535f65f7c0a4f9d712 (patch) | |
tree | f44bc6df20c4fcfa5ddeb1c07be4f08d9eeefd3e /src/main/java/gregtech/common/tileentities/machines | |
parent | f657b3d0c6b136df16d4c5194d4b06f68823c128 (diff) | |
download | GT5-Unofficial-1b50758a2e07f7ec05e08a535f65f7c0a4f9d712.tar.gz GT5-Unofficial-1b50758a2e07f7ec05e08a535f65f7c0a4f9d712.tar.bz2 GT5-Unofficial-1b50758a2e07f7ec05e08a535f65f7c0a4f9d712.zip |
Fixed coloring of pyrolyse oven.
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java index 26bc2acd39..91b1550d8b 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_PyrolyseOven.java @@ -44,10 +44,10 @@ public class GT_MetaTileEntity_PyrolyseOven extends GT_MetaTileEntity_MultiBlock public ITexture[] getTexture(IGregTechTileEntity aBaseMetaTileEntity, byte aSide, byte aFacing, byte aColorIndex, boolean aActive, boolean aRedstone) { if (aSide == aFacing) { - return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[0], + return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[111], new GT_RenderedTexture(aActive ? Textures.BlockIcons.OVERLAY_FRONT_PYROLYSE_OVEN_ACTIVE : Textures.BlockIcons.OVERLAY_FRONT_PYROLYSE_OVEN)}; } - return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[0]}; + return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[111]}; } public Object getClientGUI(int aID, InventoryPlayer aPlayerInventory, IGregTechTileEntity aBaseMetaTileEntity) { |