From ffe824b61b42f12b64bcc66e02c3c336fe83ac31 Mon Sep 17 00:00:00 2001 From: Aikar Date: Wed, 18 Apr 2018 01:44:24 -0400 Subject: [PATCH] Revert SPIGOT-3894 to restore vanilla behavior reporter of this issue was incorrect and did not verify vanilla logic vanilla logic only skips ticks if the flag is set spigots change causes bugs as it now skips ticking and processing chunk teleportation, which was a bug I fixed many many years ago... --- ...GOT-3894-to-restore-vanilla-behavior.patch | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Spigot-Server-Patches/Revert-SPIGOT-3894-to-restore-vanilla-behavior.patch diff --git a/Spigot-Server-Patches/Revert-SPIGOT-3894-to-restore-vanilla-behavior.patch b/Spigot-Server-Patches/Revert-SPIGOT-3894-to-restore-vanilla-behavior.patch new file mode 100644 index 0000000000..9c6e5095bc --- /dev/null +++ b/Spigot-Server-Patches/Revert-SPIGOT-3894-to-restore-vanilla-behavior.patch @@ -0,0 +1,26 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Aikar +Date: Wed, 18 Apr 2018 01:42:42 -0400 +Subject: [PATCH] Revert SPIGOT-3894 to restore vanilla behavior + +reporter of this issue was incorrect and did not verify vanilla logic + +vanilla logic only skips ticks if the flag is set + +spigots change causes bugs as it now skips ticking and processing +chunk teleportation, which was a bug I fixed many many years ago... + +diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java +index 4ce846b5e..6c92f93a9 100644 +--- a/src/main/java/net/minecraft/server/World.java ++++ b/src/main/java/net/minecraft/server/World.java +@@ -0,0 +0,0 @@ public abstract class World implements IBlockAccess { + // CraftBukkit end + + // Spigot start +- if (!org.spigotmc.ActivationRange.checkIfActive(entity)) { ++ if (flag && !org.spigotmc.ActivationRange.checkIfActive(entity)) { // Paper - Revert spigot change back to vanilla + entity.ticksLived++; + entity.inactiveTick(); + return; +-- \ No newline at end of file