Paper/Spigot-Server-Patches/0086-Fix-Furnace-cook-time-bug.patch

27 lines
1.2 KiB
Diff
Raw Normal View History

2016-04-02 02:08:40 +00:00
From da9640438b63bf852b255d167081b5bf7d037a23 Mon Sep 17 00:00:00 2001
From: Aikar <aikar@aikar.co>
Date: Fri, 18 Mar 2016 14:24:53 -0400
Subject: [PATCH] Fix Furnace cook time bug
If the server lags out and skips multiple ticks, Furnace cooking behavior would not
cook in the expected amount of time as the cook time was not decremented correctly.
This patch ensures that furnaces cook to the correct wall time expectation.
diff --git a/src/main/java/net/minecraft/server/TileEntityFurnace.java b/src/main/java/net/minecraft/server/TileEntityFurnace.java
2016-03-19 02:32:31 +00:00
index 1b17ca6..0a20cec 100644
--- a/src/main/java/net/minecraft/server/TileEntityFurnace.java
+++ b/src/main/java/net/minecraft/server/TileEntityFurnace.java
2016-03-19 02:32:31 +00:00
@@ -163,7 +163,7 @@ public class TileEntityFurnace extends TileEntityContainer implements ITickable,
if (this.isBurning() && this.canBurn()) {
this.cookTime += elapsedTicks;
if (this.cookTime >= this.cookTimeTotal) {
2016-03-19 02:32:31 +00:00
- this.cookTime = 0;
+ this.cookTime -= this.a(this.items[0]); // Paper
this.cookTimeTotal = this.a(this.items[0]);
this.burn();
flag1 = true;
--
2016-03-31 00:50:23 +00:00
2.8.0