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() {
|
public void respawn() {
|
||||||
throw new UnsupportedOperationException("Not supported yet.");
|
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
|
@NotNull
|
||||||
|
|||||||
Reference in New Issue
Block a user