diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-10-20 15:40:32 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-10-20 15:40:32 +1000 |
commit | b5268f7c54426ddc8289df99be5b1e81934536ba (patch) | |
tree | 2060a504304e87d2e988c9a30eb21e920dc7d55a /src/Java/gtPlusPlus/xmod/gregtech | |
parent | 3d02cb6464d9c6b29376fef53eb1418e9d58ff63 (diff) | |
download | GT5-Unofficial-b5268f7c54426ddc8289df99be5b1e81934536ba.tar.gz GT5-Unofficial-b5268f7c54426ddc8289df99be5b1e81934536ba.tar.bz2 GT5-Unofficial-b5268f7c54426ddc8289df99be5b1e81934536ba.zip |
% Changed the Substation Multiblock texture.
> Also moved most of the mod and it's hosting to Curse - http://curse.com/project/252448
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityPowerSubStationController.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityPowerSubStationController.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityPowerSubStationController.java index b85e011115..b52495865e 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityPowerSubStationController.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntityPowerSubStationController.java @@ -39,10 +39,10 @@ public class GregtechMetaTileEntityPowerSubStationController extends GT_MetaTile @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[66], + return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[67], new GT_RenderedTexture(aActive ? Textures.BlockIcons.OVERLAY_FRONT_LARGE_BOILER_ACTIVE : Textures.BlockIcons.OVERLAY_FRONT_LARGE_BOILER)}; } - return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[66]}; + return new ITexture[]{Textures.BlockIcons.CASING_BLOCKS[67]}; } @Override |