Class PlayerRecipeBookClickEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.player.PlayerEvent
com.destroystokyo.paper.event.player.PlayerRecipeBookClickEvent
- All Implemented Interfaces:
Cancellable
Called when a player clicks a recipe in the recipe book
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result
-
Field Summary
Fields inherited from class org.bukkit.event.player.PlayerEvent
player
-
Constructor Summary
ConstructorDescriptionPlayerRecipeBookClickEvent
(@NotNull Player player, @NotNull NamespacedKey recipe, boolean makeAll) -
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull HandlerList
Gets the namespaced key of the recipe that was clicked by the playerboolean
Gets the cancellation state of this event.boolean
Gets a boolean which indicates whether the player requested to make the maximum amount of results.void
setCancelled
(boolean cancel) Sets the cancellation state of this event.void
setMakeAll
(boolean makeAll) Sets whether the maximum amount of results should be made.void
setRecipe
(@NotNull NamespacedKey recipe) Changes what recipe is requested.Methods inherited from class org.bukkit.event.player.PlayerEvent
getPlayer
Methods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
PlayerRecipeBookClickEvent
-
-
Method Details
-
getRecipe
Gets the namespaced key of the recipe that was clicked by the player- Returns:
- The namespaced key of the recipe
-
setRecipe
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 the player requested to make the maximum amount of results. This istrue
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 the maximum amount of results should be made. If this istrue
, 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 interfaceCancellable
- 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 interfaceCancellable
- Parameters:
cancel
- true if you wish to cancel this event
-
getHandlers
- Specified by:
getHandlers
in classEvent
-
getHandlerList
-