SPIGOT-3622: Issue in some combinations of spawn protection

This commit is contained in:
md_5 2017-10-28 16:00:15 +11:00
parent 31d3159f04
commit 1257322d1f

View File

@ -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;
}