mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-25 20:16:19 +01:00
SPIGOT-5558: Fix World#getHighestBlockAt, previously off by +1
This commit is contained in:
parent
d70084e53d
commit
807a677e9a
@ -291,11 +291,8 @@ public class CraftWorld implements World {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getHighestBlockYAt(int x, int z) {
|
public int getHighestBlockYAt(int x, int z) {
|
||||||
if (!isChunkLoaded(x >> 4, z >> 4)) {
|
// Transient load for this tick
|
||||||
getChunkAt(x >> 4, z >> 4); // Transient load for this tick
|
return world.getChunkAt(x >> 4, z >> 4).a(HeightMap.Type.MOTION_BLOCKING, x, z);
|
||||||
}
|
|
||||||
|
|
||||||
return world.getHighestBlockYAt(HeightMap.Type.MOTION_BLOCKING, new BlockPosition(x, 0, z)).getY();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user