(BlockPos pos)
| 902 | } |
| 903 | |
| 904 | public boolean canSeeSky(BlockPos pos) |
| 905 | { |
| 906 | int i = pos.getX() & 15; |
| 907 | int j = pos.getY(); |
| 908 | int k = pos.getZ() & 15; |
| 909 | return j >= this.heightMap[k << 4 | i]; |
| 910 | } |
| 911 | |
| 912 | private TileEntity createNewTileEntity(BlockPos pos) |
| 913 | { |
no test coverage detected