Skip to content

Commit

Permalink
Fixed imnvisible Multiblocks...probably.
Browse files Browse the repository at this point in the history
  • Loading branch information
BluSunrize committed Jan 17, 2016
1 parent e8fd975 commit 5f8e792
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,21 +257,45 @@ else if(metadata==BlockMetalMultiblocks.META_fermenter)
return renderer.renderStandardBlock(block, x, y, z);
}
else if(te instanceof TileEntityDieselGenerator && ((TileEntityDieselGenerator)te).pos==31)
{
ClientUtils.handleStaticTileRenderer(te);
return true;
}
else if(te instanceof TileEntityRefinery && ((TileEntityRefinery)te).pos==17)
{
ClientUtils.handleStaticTileRenderer(te);
return true;
}
else if(te instanceof TileEntityCrusher && ((TileEntityCrusher)te).pos==17)
{
ClientUtils.handleStaticTileRenderer(te);
return true;
}
else if(te instanceof TileEntityExcavator && ((TileEntityExcavator)te).pos==4)
{
ClientUtils.handleStaticTileRenderer(te);
return true;
}
else if(te instanceof TileEntityArcFurnace && ((TileEntityArcFurnace)te).pos==62)
{
ClientUtils.handleStaticTileRenderer(te);
return true;
}
else if(te instanceof TileEntityAssembler && ((TileEntityAssembler)te).pos==4)
{
ClientUtils.handleStaticTileRenderer(te);
return true;
}
else if(te instanceof TileEntityBottlingMachine && ((TileEntityBottlingMachine)te).pos==4)
{
ClientUtils.handleStaticTileRenderer(te);
return true;
}
else if(te instanceof TileEntityMetalPress && ((TileEntityMetalPress)te).pos==4)
{
ClientUtils.handleStaticTileRenderer(te);
return true;
}
return false;
}

Expand Down

0 comments on commit 5f8e792

Please sign in to comment.