mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
8778a2ef97
This enables us a fast reference to the entities current chunk instead of having to look it up by hashmap lookups. We also store counts by type to further enable other performance optimizations in later patches.
24 lines
No EOL
1.2 KiB
Diff
24 lines
No EOL
1.2 KiB
Diff
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 886a73e93..7a1428105 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,
|
|
if (this.isBurning() && this.canBurn()) {
|
|
this.cookTime += elapsedTicks;
|
|
if (this.cookTime >= this.cookTimeTotal) {
|
|
- this.cookTime = 0;
|
|
+ this.cookTime -= this.cookTimeTotal; // Paper
|
|
this.cookTimeTotal = this.a((ItemStack) this.items.get(0));
|
|
this.burn();
|
|
flag1 = true;
|
|
--
|