mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-27 11:27:35 +01:00
Add support for fetching hidden players
By: Tux <write@imaginarycode.com>
This commit is contained in:
parent
84ac5b3cf2
commit
666a89b3e3
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user