mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-16 20:53:54 -07:00
Expose Tracked Players
This commit is contained in:
@@ -903,5 +903,14 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
|||||||
* Check if entity is inside a ticking chunk
|
* Check if entity is inside a ticking chunk
|
||||||
*/
|
*/
|
||||||
boolean isTicking();
|
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
|
// Paper end
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user