Class PlayerRecipeBookClickEvent

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

public class PlayerRecipeBookClickEvent extends PlayerEvent implements Cancellable
Called when a player clicks a recipe in the recipe book
  • Constructor Details

  • Method Details

    • getRecipe

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

      public void setRecipe(@NotNull @NotNull 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
    • isMakeAll

      public boolean isMakeAll()
      Gets a boolean which indicates whether or not 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
    • setMakeAll

      public void setMakeAll(boolean makeAll)
      Sets whether or not 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
    • 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
    • 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
    • getHandlers

      @NotNull public @NotNull HandlerList getHandlers()
      Specified by:
      getHandlers in class Event
    • getHandlerList

      @NotNull public static @NotNull HandlerList getHandlerList()