mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 06:40:19 +08:00
SPIGOT-3037: WorldBorder#isInside(Location)
This commit is contained in:
parent
334aa07e2f
commit
dbf4ecf30f
@ -1,5 +1,7 @@
|
||||
package org.bukkit.craftbukkit;
|
||||
|
||||
import com.google.common.base.Preconditions;
|
||||
import net.minecraft.server.BlockPosition;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.World;
|
||||
import org.bukkit.WorldBorder;
|
||||
@ -108,4 +110,11 @@ public class CraftWorldBorder implements WorldBorder {
|
||||
public void setWarningDistance(int distance) {
|
||||
this.handle.setWarningDistance(distance);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isInside(Location location) {
|
||||
Preconditions.checkArgument(location != null, "location");
|
||||
|
||||
return location.getWorld().equals(this.world) && this.handle.a(new BlockPosition(location.getX(), location.getY(), location.getZ()));
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user