From ae900115000ef1e6f3407a56c9ea400e2d542515 Mon Sep 17 00:00:00 2001 From: Spottedleaf Date: Fri, 2 Aug 2019 10:48:22 -0700 Subject: [PATCH] =?UTF-8?q?Fix=20chest=20logic=20being=20weird=20for=20coo?= =?UTF-8?q?rdinates=20that=20sum=20to=200=20or=20a=E2=80=A6=20(#2364)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We were previously calling what looks like a legacy check for distance away for the inventory. Unfortunately, with our logic, we called the open logic before the active container was set. So the legacy check would register 0 viewers and the logic would become bugged. --- ...06-fixup-Optimize-TileEntity-Ticking.patch | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Spigot-Server-Patches/0406-fixup-Optimize-TileEntity-Ticking.patch diff --git a/Spigot-Server-Patches/0406-fixup-Optimize-TileEntity-Ticking.patch b/Spigot-Server-Patches/0406-fixup-Optimize-TileEntity-Ticking.patch new file mode 100644 index 000000000..61ec419ef --- /dev/null +++ b/Spigot-Server-Patches/0406-fixup-Optimize-TileEntity-Ticking.patch @@ -0,0 +1,22 @@ +From 6f1992e5ac2e92994e9dae8a36bb25a9044bbcb2 Mon Sep 17 00:00:00 2001 +From: Spottedleaf +Date: Tue, 23 Jul 2019 21:11:30 -0700 +Subject: [PATCH] fixup! Optimize TileEntity Ticking + + +diff --git a/src/main/java/net/minecraft/server/TileEntityChest.java b/src/main/java/net/minecraft/server/TileEntityChest.java +index 6c10f0eb89..4aa56e50e8 100644 +--- a/src/main/java/net/minecraft/server/TileEntityChest.java ++++ b/src/main/java/net/minecraft/server/TileEntityChest.java +@@ -114,7 +114,7 @@ public class TileEntityChest extends TileEntityLootable { // Paper - Remove ITic + int j = this.position.getY(); + int k = this.position.getZ(); + +- this.viewingCount = a(this.world, this, this.j, i, j, k, this.viewingCount); ++ //this.viewingCount = a(this.world, this, this.j, i, j, k, this.viewingCount); // Paper - check is faulty given our logic is called before active container set + this.b = this.a; + float f = 0.1F; + +-- +2.22.0 +