2017-04-29 12:27:31 +02:00
|
|
|
From 1f5e3b8cd3c4a90bd433b56172f9b84f11eb65ed Mon Sep 17 00:00:00 2001
|
2016-03-18 19:27:53 +01:00
|
|
|
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
|
2017-03-03 03:57:20 +01:00
|
|
|
index 2f1f3edf5..e230d1608 100644
|
2016-03-18 19:27:53 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntityFurnace.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntityFurnace.java
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -165,7 +165,7 @@ public class TileEntityFurnace extends TileEntityContainer implements ITickable,
|
2016-03-19 03:32:31 +01:00
|
|
|
if (this.isBurning() && this.canBurn()) {
|
2016-03-18 19:27:53 +01:00
|
|
|
this.cookTime += elapsedTicks;
|
|
|
|
if (this.cookTime >= this.cookTimeTotal) {
|
2016-03-19 03:32:31 +01:00
|
|
|
- this.cookTime = 0;
|
2017-03-03 03:57:20 +01:00
|
|
|
+ this.cookTime -= this.cookTimeTotal; // Paper
|
2016-11-17 03:23:38 +01:00
|
|
|
this.cookTimeTotal = this.a((ItemStack) this.items.get(0));
|
2016-03-18 19:27:53 +01:00
|
|
|
this.burn();
|
|
|
|
flag1 = true;
|
|
|
|
--
|
2017-04-29 12:27:31 +02:00
|
|
|
2.12.2.windows.2
|
2016-03-18 19:27:53 +01:00
|
|
|
|