From 12ced6d3ea25823190453b4db9b7b905cc759a69 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 23 May 2016 08:42:20 +1000 Subject: Fixed Casing Block creative tab registration. Swapped textures. Removing uptime from the next commit forward. (Think it causes weird issues, due to bad code merging) --- .../machines/multi/GregtechMetaTileEntityIndustrialCokeOven.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Java/miscutil/gregtech/common/machines') diff --git a/src/Java/miscutil/gregtech/common/machines/multi/GregtechMetaTileEntityIndustrialCokeOven.java b/src/Java/miscutil/gregtech/common/machines/multi/GregtechMetaTileEntityIndustrialCokeOven.java index 6a00a34069..fce63c2e5d 100644 --- a/src/Java/miscutil/gregtech/common/machines/multi/GregtechMetaTileEntityIndustrialCokeOven.java +++ b/src/Java/miscutil/gregtech/common/machines/multi/GregtechMetaTileEntityIndustrialCokeOven.java @@ -55,9 +55,9 @@ public class GregtechMetaTileEntityIndustrialCokeOven @Override 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[47], new GT_RenderedTexture(aActive ? Textures.BlockIcons.OVERLAY_FRONT_MULTI_SMELTER_ACTIVE : Textures.BlockIcons.OVERLAY_FRONT_MULTI_SMELTER)}; + return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[57], new GT_RenderedTexture(aActive ? Textures.BlockIcons.OVERLAY_FRONT_MULTI_SMELTER_ACTIVE : Textures.BlockIcons.OVERLAY_FRONT_MULTI_SMELTER)}; } - return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[47]}; + return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[57]}; } @Override -- cgit