(int x, int z)
| 352 | |
| 353 | /* is this an invalid chunk coordinate? */ |
| 354 | private boolean outOfBounds(int x, int z) { |
| 355 | return x < 0 || x >= 32 || z < 0 || z >= 32; |
| 356 | } |
| 357 | |
| 358 | private int getOffset(int x, int z) { |
| 359 | return this.offsets[x + z * 32]; |
no outgoing calls
no test coverage detected