mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-22 08:11:59 +01:00
SPIGOT-3663: Add plugin parameter to hidePlayer+showPlayer.
By: Chris Cowan <agentme49@gmail.com>
This commit is contained in:
parent
987a10e861
commit
7f67ce93a3
@ -22,6 +22,7 @@ import org.bukkit.command.CommandSender;
|
|||||||
import org.bukkit.conversations.Conversable;
|
import org.bukkit.conversations.Conversable;
|
||||||
import org.bukkit.event.player.PlayerResourcePackStatusEvent;
|
import org.bukkit.event.player.PlayerResourcePackStatusEvent;
|
||||||
import org.bukkit.map.MapView;
|
import org.bukkit.map.MapView;
|
||||||
|
import org.bukkit.plugin.Plugin;
|
||||||
import org.bukkit.plugin.messaging.PluginMessageRecipient;
|
import org.bukkit.plugin.messaging.PluginMessageRecipient;
|
||||||
import org.bukkit.scoreboard.Scoreboard;
|
import org.bukkit.scoreboard.Scoreboard;
|
||||||
|
|
||||||
@ -910,16 +911,38 @@ public interface Player extends HumanEntity, Conversable, CommandSender, Offline
|
|||||||
* Hides a player from this player
|
* Hides a player from this player
|
||||||
*
|
*
|
||||||
* @param player Player to hide
|
* @param player Player to hide
|
||||||
|
* @deprecated see {@link #hidePlayer(Plugin, Player)}
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public void hidePlayer(Player player);
|
public void hidePlayer(Player player);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hides a player from this player
|
||||||
|
*
|
||||||
|
* @param plugin Plugin that wants to hide the player
|
||||||
|
* @param player Player to hide
|
||||||
|
*/
|
||||||
|
public void hidePlayer(Plugin plugin, Player player);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allows this player to see a player that was previously hidden
|
* Allows this player to see a player that was previously hidden
|
||||||
*
|
*
|
||||||
* @param player Player to show
|
* @param player Player to show
|
||||||
|
* @deprecated see {@link #showPlayer(Plugin, Player)}
|
||||||
*/
|
*/
|
||||||
|
@Deprecated
|
||||||
public void showPlayer(Player player);
|
public void showPlayer(Player player);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allows this player to see a player that was previously hidden. If
|
||||||
|
* another another plugin had hidden the player too, then the player will
|
||||||
|
* remain hidden until the other plugin calls this method too.
|
||||||
|
*
|
||||||
|
* @param plugin Plugin that wants to show the player
|
||||||
|
* @param player Player to show
|
||||||
|
*/
|
||||||
|
public void showPlayer(Plugin plugin, Player player);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks to see if a player has been hidden from this player
|
* Checks to see if a player has been hidden from this player
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user