From c0fa6b8d1214eae5c6da86283d761b4c14cf0244 Mon Sep 17 00:00:00 2001 From: Aikar Date: Sun, 15 Nov 2015 19:46:34 -0600 Subject: [PATCH] Don't create a chunk just to unload it --- ...n-t-create-a-chunk-just-to-unload-it.patch | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Spigot-Server-Patches/Don-t-create-a-chunk-just-to-unload-it.patch diff --git a/Spigot-Server-Patches/Don-t-create-a-chunk-just-to-unload-it.patch b/Spigot-Server-Patches/Don-t-create-a-chunk-just-to-unload-it.patch new file mode 100644 index 0000000000..052734d563 --- /dev/null +++ b/Spigot-Server-Patches/Don-t-create-a-chunk-just-to-unload-it.patch @@ -0,0 +1,25 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Aikar +Date: Sun, 15 Nov 2015 19:46:07 -0600 +Subject: [PATCH] Don't create a chunk just to unload it + + +diff --git a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java +index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 +--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java ++++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java +@@ -0,0 +0,0 @@ public class CraftWorld implements World { + return false; + } + +- net.minecraft.server.Chunk chunk = world.chunkProviderServer.getOrCreateChunk(x, z); ++ net.minecraft.server.Chunk chunk = world.chunkProviderServer.getChunkIfLoaded(x, z); ++ // PaperSpigot start - Don't create a chunk just to unload it ++ if (chunk == null) { ++ return false; ++ } ++ // PaperSpigot end + if (chunk.mustSave) { // If chunk had previously been queued to save, must do save to avoid loss of that data + save = true; + } +-- \ No newline at end of file