mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
31 lines
1016 B
Diff
31 lines
1016 B
Diff
From 94a801c563b172d6e9baa3869b512c13aaeed33b 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 57e6eae..7ed0f6a 100644
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
@@ -1096,6 +1096,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();
|
|
--
|
|
2.1.0
|
|
|