1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-17 10:41:41 +01:00

Expose Tracked Players

This commit is contained in:
Tom 2021-02-26 16:24:25 -06:00
parent 80b653d06f
commit eb8dcb71a9

View file

@ -903,5 +903,14 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
* Check if entity is inside a ticking chunk
*/
boolean isTicking();
/**
* Returns a set of {@link Player Players} within this entity's tracking range (players that can "see" this entity).
*
* @return players in tracking range
* @deprecated slightly misleading name, use {@link #getTrackedBy()}
*/
@Deprecated
@NotNull Set<Player> getTrackedPlayers();
// Paper end
}