mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 03:43:40 +01:00
Fix block place protection using a larger radius. Fixes BUKKIT-1617
By: feildmaster <admin@feildmaster.com>
This commit is contained in:
parent
8afa2be81a
commit
e6ad96fd25
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ public class CraftEventFactory {
|
|||
ChunkCoordinates chunkcoordinates = worldServer.getSpawn();
|
||||
|
||||
int distanceFromSpawn = (int) Math.max(Math.abs(x - chunkcoordinates.x), Math.abs(z - chunkcoordinates.z));
|
||||
return distanceFromSpawn > spawnSize;
|
||||
return distanceFromSpawn >= spawnSize;
|
||||
}
|
||||
|
||||
public static <T extends Event> T callEvent(T event) {
|
||||
|
|
Loading…
Reference in a new issue