FurnaceFuelBurnTimeEvent

Link to furnacefuelburntimeevent

The event is not cancelable.

The event does not have a result.

Importing the class

Link to importing-the-class

Importing the class is recommended for events, simply add this line to the top of your script file.

ZenScript
Copy
import crafttweaker.neoforge.api.event.FurnaceFuelBurnTimeEvent;

Listening to the event

Link to listening-to-the-event

ZenScript
Copy
events.register<crafttweaker.neoforge.api.event.FurnaceFuelBurnTimeEvent>(event => {
    println("FurnaceFuelBurnTimeEvent ran!");
});

FurnaceFuelBurnTimeEvent extends Event. That means all methods available in Event are also available in FurnaceFuelBurnTimeEvent

Implemented Interfaces

Link to implemented-interfaces

FurnaceFuelBurnTimeEvent implements the following interfaces. That means all methods defined in these interfaces are also available in FurnaceFuelBurnTimeEvent

NameTypeHas GetterHas Setter
Name
burnTime
Type
FurnaceFuelBurnTimeEvent
Has Getter
true
Has Setter
true
Name
itemStack
Type
IItemStack
Has Getter
true
Has Setter
false
Name
recipeType
Type
IRecipeManager<Recipe<RecipeInput>>
Has Getter
true
Has Setter
false