mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 01:25:03 +01:00
Missed a case
By: Thinkofdeath <thinkofdeath@spigotmc.org>
This commit is contained in:
parent
68581f9ef5
commit
22718ff198
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ public class CraftChunk implements Chunk {
|
|||
}
|
||||
|
||||
public Block getBlock(int x, int y, int z) {
|
||||
return new CraftBlock(this, (getX() << 4) | (x & 0xF), y & 0xFF, (getZ() << 4) | (z & 0xF));
|
||||
return new CraftBlock(this, (getX() << 4) | (x & 0xF), y, (getZ() << 4) | (z & 0xF));
|
||||
}
|
||||
|
||||
public Entity[] getEntities() {
|
||||
|
|
Loading…
Add table
Reference in a new issue