mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-26 19:07:40 +01:00
add consumeFuel to FurnaceBurnEvent
This commit is contained in:
parent
c0e2f67d7c
commit
6293f3ad54
@ -18,6 +18,7 @@ public class FurnaceBurnEvent extends BlockEvent implements Cancellable {
|
||||
private int burnTime;
|
||||
private boolean cancelled;
|
||||
private boolean burning;
|
||||
private boolean consumeFuel = true; // Paper
|
||||
|
||||
public FurnaceBurnEvent(@NotNull final Block furnace, @NotNull final ItemStack fuel, final int burnTime) {
|
||||
super(furnace);
|
||||
@ -72,6 +73,25 @@ public class FurnaceBurnEvent extends BlockEvent implements Cancellable {
|
||||
public void setBurning(boolean burning) {
|
||||
this.burning = burning;
|
||||
}
|
||||
// Paper start
|
||||
/**
|
||||
* Gets whether the furnace's fuel will be consumed or not.
|
||||
*
|
||||
* @return whether the furnace's fuel will be consumed
|
||||
*/
|
||||
public boolean willConsumeFuel() {
|
||||
return consumeFuel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets whether the furnace's fuel will be consumed or not.
|
||||
*
|
||||
* @param consumeFuel true to consume the fuel
|
||||
*/
|
||||
public void setConsumeFuel(boolean consumeFuel) {
|
||||
this.consumeFuel = consumeFuel;
|
||||
}
|
||||
// Paper end
|
||||
|
||||
@Override
|
||||
public boolean isCancelled() {
|
||||
|
Loading…
Reference in New Issue
Block a user