3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-11-16 04:50:05 +01:00

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.
Dieser Commit ist enthalten in:
Roger Baumgartner 2013-08-17 16:13:31 +02:00 committet von Travis Ralston
Ursprung 6482b6f0bd
Commit 2e7f66787d

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