Fix an issue regarding a change mapping name causing the build to fail.
This commit is contained in:
parent
1efea0cc6b
commit
69cedbf38b
|
@ -51,7 +51,7 @@ public class TileEntityIronChestRenderer extends TileEntitySpecialRenderer<TileE
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void renderTileEntityAt(TileEntityIronChest te, double x, double y, double z, float partialTicks, int destroyStage, float partial)
|
public void render(TileEntityIronChest te, double x, double y, double z, float partialTicks, int destroyStage, float partial)
|
||||||
{
|
{
|
||||||
if (te == null || te.isInvalid())
|
if (te == null || te.isInvalid())
|
||||||
{
|
{
|
||||||
|
|
|
@ -49,7 +49,7 @@ public class TileEntityIronShulkerBoxRenderer extends TileEntitySpecialRenderer<
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void renderTileEntityAt(TileEntityIronShulkerBox te, double x, double y, double z, float partialTicks, int destroyStage, float partial)
|
public void render(TileEntityIronShulkerBox te, double x, double y, double z, float partialTicks, int destroyStage, float partial)
|
||||||
{
|
{
|
||||||
if (te == null || te.isInvalid())
|
if (te == null || te.isInvalid())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue