diff --git a/common/buildcraft/factory/render/RenderTank.java b/common/buildcraft/factory/render/RenderTank.java index 8adf17d9..b06eb4e6 100644 --- a/common/buildcraft/factory/render/RenderTank.java +++ b/common/buildcraft/factory/render/RenderTank.java @@ -49,7 +49,7 @@ public class RenderTank extends TileEntitySpecialRenderer { BlockInterface block = new BlockInterface(); if (liquidId < Block.blocksList.length && Block.blocksList[liquidId] != null) - block.texture = Block.blocksList[liquidId].blockIndexInTexture; + block.texture = Block.blocksList[liquidId].getBlockTextureFromSideAndMetadata(0, damage); else if(Item.itemsList[liquidId] != null) block.texture = Item.itemsList[liquidId].getIconFromDamage(damage); else