Add openSign method to HumanEntity

This commit is contained in:
Mark Vainomaa
2018-04-01 02:28:43 +03:00
parent 16b17bdc68
commit a97f03a018
2 changed files with 23 additions and 1 deletions

View File

@@ -3115,10 +3115,12 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
/**
* Open a Sign for editing by the Player.
*
* The Sign must be placed in the same world as the player.
* The Sign must be in the same world as the player.
*
* @param sign The sign to edit
* @deprecated use {@link #openSign(Sign, Side)}
*/
@Deprecated
public void openSign(@NotNull Sign sign);
/**