Add validation checks to CraftPlayer.teleport
This commit is contained in:
parent
ab13683d8e
commit
ca6d2cf9dc
@ -487,6 +487,10 @@ public class CraftPlayer extends CraftHumanEntity implements Player {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean teleport(Location location, PlayerTeleportEvent.TeleportCause cause) {
|
public boolean teleport(Location location, PlayerTeleportEvent.TeleportCause cause) {
|
||||||
|
Preconditions.checkArgument(location != null, "location");
|
||||||
|
Preconditions.checkArgument(location.getWorld() != null, "location.world");
|
||||||
|
location.checkFinite();
|
||||||
|
|
||||||
EntityPlayer entity = getHandle();
|
EntityPlayer entity = getHandle();
|
||||||
|
|
||||||
if (getHealth() == 0 || entity.dead) {
|
if (getHealth() == 0 || entity.dead) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user