geforkt von Mirrors/Paper
Improved FurnaceBurn event.
- Added the ability to set the burn time of the fuel. - Added the ability to set if a fuel should burn or not.
Dieser Commit ist enthalten in:
Ursprung
68506e2a4a
Commit
7cd03e65d1
@ -147,10 +147,10 @@ public class TileEntityFurnace extends TileEntity implements IInventory {
|
||||
return;
|
||||
}
|
||||
|
||||
this.ticksForCurrentFuel = this.fuelTime(this.items[1]);
|
||||
this.ticksForCurrentFuel = furnaceBurnEvent.getBurnTime();
|
||||
this.burnTime += this.ticksForCurrentFuel;
|
||||
// CraftBukkit end
|
||||
if (this.burnTime > 0) {
|
||||
if (this.burnTime > 0 && furnaceBurnEvent.isBurning()) {
|
||||
// CraftBukkit end
|
||||
flag1 = true;
|
||||
if (this.items[1] != null) {
|
||||
--this.items[1].count;
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren