From f26dc668ae8921b4d566edb53abe31ff5d12dee5 Mon Sep 17 00:00:00 2001 From: Mariell Hoversholm Date: Sun, 27 Sep 2020 16:32:04 +0200 Subject: [PATCH] Patch SPIGOT-6086 for all invalid locations md_5's patch for SPIGOT-6086 only applies to locations over the world, not those under or outside it. --- ...irty-in-invalid-locations-SPIGOT-6086.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Spigot-Server-Patches/Don-t-mark-dirty-in-invalid-locations-SPIGOT-6086.patch diff --git a/Spigot-Server-Patches/Don-t-mark-dirty-in-invalid-locations-SPIGOT-6086.patch b/Spigot-Server-Patches/Don-t-mark-dirty-in-invalid-locations-SPIGOT-6086.patch new file mode 100644 index 0000000000..d63780062b --- /dev/null +++ b/Spigot-Server-Patches/Don-t-mark-dirty-in-invalid-locations-SPIGOT-6086.patch @@ -0,0 +1,18 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Mariell Hoversholm +Date: Sun, 27 Sep 2020 16:25:24 +0200 +Subject: [PATCH] Don't mark dirty in invalid locations (SPIGOT-6086) + + +diff --git a/src/main/java/net/minecraft/server/PlayerChunk.java b/src/main/java/net/minecraft/server/PlayerChunk.java +index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 +--- a/src/main/java/net/minecraft/server/PlayerChunk.java ++++ b/src/main/java/net/minecraft/server/PlayerChunk.java +@@ -0,0 +0,0 @@ public class PlayerChunk { + } + + public void a(BlockPosition blockposition) { ++ if (!blockposition.isValidLocation()) return; // Paper - SPIGOT-6086 for all invalid locations; avoid acquiring locks + Chunk chunk = this.getSendingChunk(); // Paper - no-tick view distance + + if (chunk != null) {