Returns the value in the height map at this x, z coordinate in the chunk
(int x, int z)
| 176 | * Returns the value in the height map at this x, z coordinate in the chunk |
| 177 | */ |
| 178 | public int getHeightValue(int x, int z) |
| 179 | { |
| 180 | return this.heightMap[z << 4 | x]; |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Returns the topmost ExtendedBlockStorage instance for this Chunk that actually contains a block. |
no outgoing calls
no test coverage detected