mirror of
https://github.com/PaperMC/Paper.git
synced 2025-07-28 18:52:03 -07:00
Add support for fetching hidden players
By: Tux <write@imaginarycode.com>
This commit is contained in:
@@ -2308,6 +2308,16 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
||||
public void respawn() {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets all players hidden with {@link #hidePlayer(org.bukkit.entity.Player)}.
|
||||
*
|
||||
* @return a Set with all hidden players
|
||||
*/
|
||||
@NotNull
|
||||
public java.util.Set<Player> getHiddenPlayers() {
|
||||
throw new UnsupportedOperationException("Not supported yet.");
|
||||
}
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
Reference in New Issue
Block a user