Class PlayerRecipeBookClickEvent

java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
com.destroystokyo.paper.event.player.PlayerRecipeBookClickEvent
All Implemented Interfaces:
Cancellable

@NullMarked public class PlayerRecipeBookClickEvent extends PlayerEvent implements Cancellable
Called when a player clicks a recipe in the recipe book
Since:
1.15.2
  • Constructor Details

  • Method Details

    • getRecipe

      public NamespacedKey getRecipe()
      Gets the namespaced key of the recipe that was clicked by the player
      Returns:
      The namespaced key of the recipe
      Since:
      1.15.2
    • setRecipe

      public void setRecipe(NamespacedKey recipe)
      Changes what recipe is requested. This sets the requested recipe to the recipe with the given key
      Parameters:
      recipe - The key of the recipe that should be requested
      Since:
      1.15.2
    • isMakeAll

      public boolean isMakeAll()
      Gets a boolean which indicates whether the player requested to make the maximum amount of results. This is true if shift is pressed while the recipe is clicked in the recipe book
      Returns:
      true if shift is pressed while the recipe is clicked
      Since:
      1.15.2
    • setMakeAll

      public void setMakeAll(boolean makeAll)
      Sets whether the maximum amount of results should be made. If this is true, the request is handled as if the player had pressed shift while clicking on the recipe
      Parameters:
      makeAll - true if the request should attempt to make the maximum amount of results
      Since:
      1.15.2
    • isCancelled

      public boolean isCancelled()
      Description copied from interface: Cancellable
      Gets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins
      Specified by:
      isCancelled in interface Cancellable
      Returns:
      true if this event is cancelled
      Since:
      1.15.2
    • setCancelled

      public void setCancelled(boolean cancel)
      Description copied from interface: Cancellable
      Sets the cancellation state of this event. A cancelled event will not be executed in the server, but will still pass to other plugins.
      Specified by:
      setCancelled in interface Cancellable
      Parameters:
      cancel - true if you wish to cancel this event
      Since:
      1.15.2
    • getHandlers

      public HandlerList getHandlers()
      Specified by:
      getHandlers in class Event
      Since:
      1.15.2
    • getHandlerList

      public static HandlerList getHandlerList()
      Since:
      1.15.2