diff --git a/src/main/java/com/laytonsmith/abstraction/bukkit/entities/BukkitMCEntity.java b/src/main/java/com/laytonsmith/abstraction/bukkit/entities/BukkitMCEntity.java index ec9ba7484..8776aa31c 100644 --- a/src/main/java/com/laytonsmith/abstraction/bukkit/entities/BukkitMCEntity.java +++ b/src/main/java/com/laytonsmith/abstraction/bukkit/entities/BukkitMCEntity.java @@ -222,7 +222,7 @@ public void setVelocity(Vector3D velocity) { @Override public boolean teleport(MCEntity destination) { - return this.teleport(destination.getLocation(), MCTeleportCause.UNKNOWN); + return this.teleport(destination.getLocation(), MCTeleportCause.PLUGIN); } @Override @@ -232,7 +232,7 @@ public boolean teleport(MCEntity destination, MCTeleportCause cause) { @Override public boolean teleport(MCLocation location) { - return this.teleport(location, MCTeleportCause.UNKNOWN); + return this.teleport(location, MCTeleportCause.PLUGIN); } @Override