Made engineering table slightly lower

This commit is contained in:
Calclavia 2014-01-23 18:48:30 +08:00
parent 8219fdfb11
commit e5449e9566
2 changed files with 2 additions and 1 deletions

View file

@ -37,6 +37,7 @@ public class BlockEngineeringTable extends BlockRIRotatable
public BlockEngineeringTable()
{
super("engineeringTable");
setBlockBounds(0, 0, 0, 1, 0.9f, 1);
}
@Override

View file

@ -22,7 +22,7 @@ public class RenderEngineeringTable extends RenderItemOverlayTile
{
TileEngineeringTable tile = (TileEngineeringTable) tileEntity;
renderItemOnSides(tileEntity, tile.getStackInSlot(9), x, y, z);
renderTopOverlay(tileEntity, tile.craftingMatrix, tile.getDirection(), x, y, z);
renderTopOverlay(tileEntity, tile.craftingMatrix, tile.getDirection(), x, y - 0.1, z);
}
}
}