aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0430-Fix-unregistering-entities-from-unloading-chunks.patch
diff options
context:
space:
mode:
authorSpottedleaf <[email protected]>2020-07-27 22:19:11 -0700
committerGitHub <[email protected]>2020-07-28 01:19:11 -0400
commitdafc7b8f8d3207426d3e9cdb5300fda8642127c9 (patch)
tree3c9fafa4cb73a3148c97825241ec6725c429255e /Spigot-Server-Patches/0430-Fix-unregistering-entities-from-unloading-chunks.patch
parent5791e512b73a73775f74580925ef3249b35e5032 (diff)
downloadPaper-dafc7b8f8d3207426d3e9cdb5300fda8642127c9.tar.gz
Paper-dafc7b8f8d3207426d3e9cdb5300fda8642127c9.zip
Fix off by one error for scheduling block ticks (#4014)
Co-authored-by: Spottedleaf <[email protected]> Fixes #4015
Diffstat (limited to 'Spigot-Server-Patches/0430-Fix-unregistering-entities-from-unloading-chunks.patch')
-rw-r--r--Spigot-Server-Patches/0430-Fix-unregistering-entities-from-unloading-chunks.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/Spigot-Server-Patches/0430-Fix-unregistering-entities-from-unloading-chunks.patch b/Spigot-Server-Patches/0430-Fix-unregistering-entities-from-unloading-chunks.patch
index a09637ea01..53a29f344c 100644
--- a/Spigot-Server-Patches/0430-Fix-unregistering-entities-from-unloading-chunks.patch
+++ b/Spigot-Server-Patches/0430-Fix-unregistering-entities-from-unloading-chunks.patch
@@ -15,10 +15,10 @@ Combine that with a buggy detail of the previous implementation of
the Dupe UUID patch, then this was the likely source of the "Ghost entities"
diff --git a/src/main/java/net/minecraft/server/WorldServer.java b/src/main/java/net/minecraft/server/WorldServer.java
-index 815a668c60e6302940545259cce60e2dbe608464..26f82291ded548f7d623668d95d74833d5211709 100644
+index 0e28e829474bea693550b3b2f0e72f97ff9bb10e..0038ba4153ce3bb894968ce848f844800361c44a 100644
--- a/src/main/java/net/minecraft/server/WorldServer.java
+++ b/src/main/java/net/minecraft/server/WorldServer.java
-@@ -1385,9 +1385,9 @@ public class WorldServer extends World implements GeneratorAccessSeed {
+@@ -1387,9 +1387,9 @@ public class WorldServer extends World implements GeneratorAccessSeed {
}
private void removeEntityFromChunk(Entity entity) {