mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-05 16:49:39 +00:00
Add Player#openBook(ItemStack) method
This PR adds the openBook(ItemStack) method to Player that allows opening a Material.WRITTEN_BOOK for a player on demand.
This commit is contained in:
parent
6eac6d7062
commit
1ef8b9d97f
1 changed files with 8 additions and 0 deletions
|
@ -19,6 +19,7 @@ import org.bukkit.advancement.AdvancementProgress;
|
|||
import org.bukkit.block.data.BlockData;
|
||||
import org.bukkit.conversations.Conversable;
|
||||
import org.bukkit.event.player.PlayerResourcePackStatusEvent;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.map.MapView;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
import org.bukkit.plugin.messaging.PluginMessageRecipient;
|
||||
|
@ -1471,4 +1472,11 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
|||
* after permission changes are done.
|
||||
*/
|
||||
public void updateCommands();
|
||||
|
||||
/**
|
||||
* Open a {@link Material#WRITTEN_BOOK} for a Player
|
||||
*
|
||||
* @param book The book to open for this player
|
||||
*/
|
||||
public void openBook(@NotNull ItemStack book);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue