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 Copyimport crafttweaker.neoforge.api.event.FurnaceFuelBurnTimeEvent;
Listening to the event
Link to listening-to-the-event
ZenScript Copyevents.register<crafttweaker.neoforge.api.event.FurnaceFuelBurnTimeEvent>(event => {
println("FurnaceFuelBurnTimeEvent ran!");
});
Supertype
Link to supertype
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
Properties
Link to properties
Name | Type | Has Getter | Has 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<Container>> | Has Getter true | Has Setter false |