Return correct hasLineOfSight value for players. Fixes BUKKIT-4634

Prior to this change when a plugin called Player.hasLineOfSite() the
method would always return false because EntityHuman does not extend
EntityInsentient. This commit changes that by explicitly checking for
line of sight between two entities and returning that value.

By: Roger Baumgartner <rogermarcbaumgartner@hotmail.com>
This commit is contained in:
CraftBukkit/Spigot 2013-08-17 16:13:31 +02:00
parent 2436b7abb8
commit 9680b8dcdb

View file

@ -329,7 +329,7 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
}
public boolean hasLineOfSight(Entity other) {
return getHandle() instanceof EntityInsentient && ((EntityInsentient) getHandle()).getEntitySenses().canSee(((CraftEntity) other).getHandle());
return getHandle().o(((CraftEntity) other).getHandle());
}
public boolean getRemoveWhenFarAway() {