31 lines
1.0 KiB
Diff
31 lines
1.0 KiB
Diff
From 874417c9a73472f62a4ba3bfbeac8db77d0831eb Mon Sep 17 00:00:00 2001
|
|
From: Tux <write@imaginarycode.com>
|
|
Date: Sun, 9 Feb 2014 14:02:11 -0500
|
|
Subject: [PATCH] Add support for fetching hidden players
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
|
index 204c4b2..6237663 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -1077,6 +1077,16 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline
|
|
{
|
|
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();
|
|
--
|
|
1.8.4.msysgit.0
|
|
|