Package org.bukkit.event.block
Class CrafterCraftEvent
java.lang.Object
org.bukkit.event.Event
org.bukkit.event.block.BlockEvent
org.bukkit.event.block.CrafterCraftEvent
- All Implemented Interfaces:
Cancellable
Event called when a Crafter is about to craft an item
- API Note:
- Currently still experimental as it is ported from an open, not merged, spigot PR. The event was pulled to allow protection plugins and the likes to properly manage crafters. The type remains experimental as upstream *may* change the event before pulling it, resulting in a breaking change.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.bukkit.event.Event
Event.Result -
Field Summary
Fields inherited from class org.bukkit.event.block.BlockEvent
block -
Constructor Summary
ConstructorsConstructorDescriptionCrafterCraftEvent(@NotNull Block theBlock, @NotNull CraftingRecipe recipe, @NotNull ItemStack result) -
Method Summary
Modifier and TypeMethodDescriptionstatic @NotNull HandlerListThe recipe that was used to craft this itemGets the result for the craftbooleanGets the cancellation state of this event.voidsetCancelled(boolean cancel) Sets the cancellation state of this event.voidSets the result of the craftMethods inherited from class org.bukkit.event.block.BlockEvent
getBlockMethods inherited from class org.bukkit.event.Event
callEvent, getEventName, isAsynchronous
-
Constructor Details
-
CrafterCraftEvent
-
-
Method Details
-
getResult
Gets the result for the craft- Returns:
- the result for the craft
-
setResult
Sets the result of the craft- Parameters:
result- the result of the craft
-
getRecipe
The recipe that was used to craft this item- Returns:
- the recipe that was used to craft this item
-
getHandlers
- Specified by:
getHandlersin classEvent
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableGets 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:
isCancelledin interfaceCancellable- Returns:
- true if this event is cancelled
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableSets 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:
setCancelledin interfaceCancellable- Parameters:
cancel- true if you wish to cancel this event
-
getHandlerList
-