Update for mcp changes

This commit is contained in:
Christian 2012-06-25 15:42:05 -04:00
parent aa2388e76e
commit 6cbc221271
1 changed files with 2 additions and 2 deletions

View File

@ -17,11 +17,11 @@ import net.minecraft.src.mod_IronChest;
public class IronChestRenderHelper extends ChestItemRenderHelper { public class IronChestRenderHelper extends ChestItemRenderHelper {
@Override @Override
public void func_35609_a(Block block, int i, float f) { public void renderChest(Block block, int i, float f) {
if (block==mod_IronChest.ironChestBlock) { if (block==mod_IronChest.ironChestBlock) {
TileEntityRenderer.instance.renderTileEntityAt(block.getTileEntity(i), 0.0D, 0.0D, 0.0D, 0.0F); TileEntityRenderer.instance.renderTileEntityAt(block.getTileEntity(i), 0.0D, 0.0D, 0.0D, 0.0F);
} else { } else {
super.func_35609_a(block, i, f); super.renderChest(block, i, f);
} }
} }
} }