Skip to content

Commit

Permalink
Add support for fetching hidden players
Browse files Browse the repository at this point in the history
  • Loading branch information
minecrafter authored and SpigotMC committed Sep 4, 2014
1 parent 7d9603e commit 3eb6c5f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/org/bukkit/entity/Player.java
Original file line number Diff line number Diff line change
Expand Up @@ -1094,6 +1094,16 @@ public String getLocale()
{
throw new UnsupportedOperationException( "Not supported yet." );
}

/**
* Gets all players hidden with {@link hidePlayer(org.bukkit.entity.Player)}.
*
* @return a Set with all hidden players
*/
public java.util.Set<Player> getHiddenPlayers()
{
throw new UnsupportedOperationException( "Not supported yet." );
}
}

Spigot spigot();
Expand Down

0 comments on commit 3eb6c5f

Please sign in to comment.