mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-09 04:09:54 +01:00
SPIGOT-3622: Issue in some combinations of spawn protection
This commit is contained in:
parent
31d3159f04
commit
1257322d1f
@ -84,7 +84,7 @@ public class CraftEventFactory {
|
||||
|
||||
BlockPosition chunkcoordinates = worldServer.getSpawn();
|
||||
|
||||
int distanceFromSpawn = Math.max(Math.abs(x - chunkcoordinates.getX()), Math.abs(z - chunkcoordinates.getY()));
|
||||
int distanceFromSpawn = Math.max(Math.abs(x - chunkcoordinates.getX()), Math.abs(z - chunkcoordinates.getZ()));
|
||||
return distanceFromSpawn > spawnSize;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user