314315316317318319320321322323324325326327
return false; } TileEntity te = world.getBlockTileEntity(x, y, z); if(te instanceof IRotateableTile) { IRotateableTile tile = ((IRotateableTile)te); if (tile.canRotate()) { tile.rotate(); return true; } } return false; }
223224225226227228229230231232233234235236