Checks if a Chunk has been generated at the specified chunk key, which is the X and Z packed into a long. @param chunkKey The Chunk Key to look up the chunk by @return true if the chunk has been generated, otherwise false
(long chunkKey)
| 345 | * @return true if the chunk has been generated, otherwise false |
| 346 | */ |
| 347 | default boolean isChunkGenerated(long chunkKey) { |
| 348 | return isChunkGenerated((int) chunkKey, (int) (chunkKey >> 32)); |
| 349 | } |
| 350 | // Paper end - isChunkGenerated API |
no outgoing calls
no test coverage detected