mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
24 lines
935 B
Diff
24 lines
935 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Tom <cryptite@gmail.com>
|
|
Date: Fri, 26 Feb 2021 16:24:25 -0600
|
|
Subject: [PATCH] Expose Tracked Players
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Entity.java b/src/main/java/org/bukkit/entity/Entity.java
|
|
index e3de56ffa7b3a554755a7401988945eca655d816..898c005cb715235df8d7ed6a98faa8191af2fd91 100644
|
|
--- a/src/main/java/org/bukkit/entity/Entity.java
|
|
+++ b/src/main/java/org/bukkit/entity/Entity.java
|
|
@@ -768,5 +768,12 @@ public interface Entity extends Metadatable, CommandSender, Nameable, Persistent
|
|
* Check if entity is inside a ticking chunk
|
|
*/
|
|
public 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
|
|
+ */
|
|
+ @NotNull Set<Player> getTrackedPlayers();
|
|
// Paper end
|
|
}
|