mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
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.
This commit is contained in:
parent
91b4746fe0
commit
944a964300
1 changed files with 24 additions and 0 deletions
24
Spigot-Server-Patches/Fix-Furnace-cook-time-bug.patch
Normal file
24
Spigot-Server-Patches/Fix-Furnace-cook-time-bug.patch
Normal file
|
@ -0,0 +1,24 @@
|
|||
From 0000000000000000000000000000000000000000 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
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/net/minecraft/server/TileEntityFurnace.java
|
||||
+++ b/src/main/java/net/minecraft/server/TileEntityFurnace.java
|
||||
@@ -0,0 +0,0 @@ public class TileEntityFurnace extends TileEntityContainer implements ITickable,
|
||||
this.cookTime += elapsedTicks;
|
||||
if (this.cookTime >= this.cookTimeTotal) {
|
||||
this.cookTime = 0;
|
||||
- this.cookTimeTotal = this.a(this.items[0]);
|
||||
+ this.cookTimeTotal -= this.a(this.items[0]); // Paper - Fix Furnace cook time bug
|
||||
this.burn();
|
||||
flag1 = true;
|
||||
}
|
||||
--
|
Loading…
Reference in a new issue