MCPcopy Index your code
hub / github.com/PaperMC/Paper / isChunkGenerated

Method isChunkGenerated

paper-api/src/main/java/org/bukkit/World.java:347–347  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 2

isGeneratedMethod · 0.95
isChunkGeneratedMethod · 0.65

Implementers 1

CraftWorldpaper-server/src/main/java/org/bukkit/

Calls

no outgoing calls

Tested by

no test coverage detected