13
0
geforkt von Mirrors/Paper

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>
Dieser Commit ist enthalten in:
CraftBukkit/Spigot 2013-08-17 16:13:31 +02:00
Ursprung 2436b7abb8
Commit 9680b8dcdb

Datei anzeigen

@ -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() {