1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-02-18 11:22:15 +01:00

: Add CrafterCraftEvent

By: ploppyperson <nathat890@outlook.com>
This commit is contained in:
Bukkit/Spigot 2024-07-30 07:07:06 +10:00
parent 6d5823ee01
commit bc71bebfb4

View file

@ -0,0 +1,75 @@
package org.bukkit.event.block;
import org.bukkit.block.Block;
import org.bukkit.event.Cancellable;
import org.bukkit.event.HandlerList;
import org.bukkit.inventory.CraftingRecipe;
import org.bukkit.inventory.ItemStack;
import org.jetbrains.annotations.NotNull;
/**
* Event called when a Crafter is about to craft an item.
*/
public class CrafterCraftEvent extends BlockEvent implements Cancellable {
private static final HandlerList handlers = new HandlerList();
private final CraftingRecipe recipe;
private ItemStack result;
private boolean cancelled;
public CrafterCraftEvent(@NotNull Block theBlock, @NotNull CraftingRecipe recipe, @NotNull ItemStack result) {
super(theBlock);
this.result = result;
this.recipe = recipe;
}
/**
* Gets the result for the craft.
*
* @return the result for the craft
*/
@NotNull
public ItemStack getResult() {
return result.clone();
}
/**
* Sets the result of the craft.
*
* @param result the result of the craft
*/
public void setResult(@NotNull ItemStack result) {
this.result = result.clone();
}
/**
* Gets the recipe that was used to craft this item.
*
* @return the recipe that was used to craft this item
*/
@NotNull
public CraftingRecipe getRecipe() {
return recipe;
}
@Override
public boolean isCancelled() {
return cancelled;
}
@Override
public void setCancelled(boolean cancel) {
this.cancelled = cancel;
}
@NotNull
@Override
public HandlerList getHandlers() {
return handlers;
}
@NotNull
public static HandlerList getHandlerList() {
return handlers;
}
}