MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / isChunkLoaded

Method isChunkLoaded

src/main/java/net/minecraft/world/World.java:328–331  ·  view source on GitHub ↗
(int x, int z, boolean allowEmpty)

Source from the content-addressed store, hash-verified

326 }
327
328 protected boolean isChunkLoaded(int x, int z, boolean allowEmpty)
329 {
330 return this.chunkProvider.chunkExists(x, z) && (allowEmpty || !this.chunkProvider.provideChunk(x, z).isEmpty());
331 }
332
333 public Chunk getChunkFromBlockCoords(BlockPos pos)
334 {

Callers 11

isBlockLoadedMethod · 0.95
isAreaLoadedMethod · 0.95
getHeightMethod · 0.95
spawnEntityInWorldMethod · 0.95
updateEntitiesMethod · 0.95
getEntitiesWithinAABBMethod · 0.95
removeAllEntitiesMethod · 0.80

Calls 3

chunkExistsMethod · 0.65
provideChunkMethod · 0.65
isEmptyMethod · 0.45

Tested by

no test coverage detected