geforkt von Mirrors/Paper
SPIGOT-3037: WorldBorder#isInside(Location)
Dieser Commit ist enthalten in:
Ursprung
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()));
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren