diff options
| author | Blood-Asp <bloodasphendrik@gmail.com> | 2017-08-11 14:19:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-11 14:19:10 +0200 |
| commit | 46420e73cbfedab2e7c1c21fd5a23a37827a20c2 (patch) | |
| tree | 52de0584d9497823019e88a4daab9d073aca1c0c /src/main/java/gregtech/common/tileentities | |
| parent | 0ddc793c9d36d2248f32a0aab144347449599773 (diff) | |
| parent | 1b50758a2e07f7ec05e08a535f65f7c0a4f9d712 (diff) | |
| download | GT5-Unofficial-46420e73cbfedab2e7c1c21fd5a23a37827a20c2.tar.gz GT5-Unofficial-46420e73cbfedab2e7c1c21fd5a23a37827a20c2.tar.bz2 GT5-Unofficial-46420e73cbfedab2e7c1c21fd5a23a37827a20c2.zip | |
Merge pull request #1144 from Dimach/unstable
Fixed coloring of pyrolyse oven.
Diffstat (limited to 'src/main/java/gregtech/common/tileentities')
| -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) { |
