mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 03:25:15 +01:00
stupid ChunkPosition's are relative to the chunk
This commit is contained in:
parent
078f48c0fb
commit
5c4f1d75b5
@ -89,7 +89,7 @@ public class CraftChunk implements Chunk {
|
||||
for (Object obj : chunk.l.keySet().toArray()) {
|
||||
if (!(obj instanceof ChunkPosition)) continue;
|
||||
ChunkPosition position = (ChunkPosition) obj;
|
||||
entities[index++] = worldServer.getWorld().getBlockAt(position.a, position.b, position.c).getState();
|
||||
entities[index++] = worldServer.getWorld().getBlockAt(position.a + (chunk.j << 4), position.b, position.c + (chunk.k << 4)).getState();
|
||||
}
|
||||
return entities;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user