Update for mcp changes
This commit is contained in:
parent
aa2388e76e
commit
6cbc221271
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue