mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-06 18:50:51 +01:00
#636: Add FurnaceStartSmeltEvent
By: Rabbitual <38820203+Rabbitual@users.noreply.github.com>
This commit is contained in:
parent
16922e92de
commit
c30e6c45cd
1 changed files with 71 additions and 0 deletions
|
@ -0,0 +1,71 @@
|
||||||
|
package org.bukkit.event.inventory;
|
||||||
|
|
||||||
|
import org.bukkit.block.Block;
|
||||||
|
import org.bukkit.event.HandlerList;
|
||||||
|
import org.bukkit.event.block.BlockEvent;
|
||||||
|
import org.bukkit.inventory.CookingRecipe;
|
||||||
|
import org.bukkit.inventory.ItemStack;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
|
||||||
|
public class FurnaceStartSmeltEvent extends BlockEvent {
|
||||||
|
private static final HandlerList handlers = new HandlerList();
|
||||||
|
private final ItemStack source;
|
||||||
|
private final CookingRecipe<?> recipe;
|
||||||
|
private int totalCookTime;
|
||||||
|
|
||||||
|
public FurnaceStartSmeltEvent(@NotNull final Block furnace, @NotNull ItemStack source, @NotNull final CookingRecipe<?> recipe) {
|
||||||
|
super(furnace);
|
||||||
|
this.source = source;
|
||||||
|
this.recipe = recipe;
|
||||||
|
this.totalCookTime = recipe.getCookingTime();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the source ItemStack for this event
|
||||||
|
*
|
||||||
|
* @return the source ItemStack
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
public ItemStack getSource() {
|
||||||
|
return source;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the FurnaceRecipe associated with this event
|
||||||
|
*
|
||||||
|
* @return the FurnaceRecipe being cooked
|
||||||
|
*/
|
||||||
|
@NotNull
|
||||||
|
public CookingRecipe<?> getRecipe() {
|
||||||
|
return recipe;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the total cook time associated with this event
|
||||||
|
*
|
||||||
|
* @return the total cook time
|
||||||
|
*/
|
||||||
|
public int getTotalCookTime() {
|
||||||
|
return totalCookTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets the total cook time for this event
|
||||||
|
*
|
||||||
|
* @param cookTime the new total cook time
|
||||||
|
*/
|
||||||
|
public void setTotalCookTime(int cookTime) {
|
||||||
|
this.totalCookTime = cookTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NotNull
|
||||||
|
@Override
|
||||||
|
public HandlerList getHandlers() {
|
||||||
|
return handlers;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NotNull
|
||||||
|
public static HandlerList getHandlerList() {
|
||||||
|
return handlers;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue