Paper/Spigot-Server-Patches/0053-Don-t-create-a-chunk-just-to-unload-it.patch

29 Zeilen
1.1 KiB
Diff

From 064ef8799679a16ccfc7538d2796d374f4a1b0f4 Mon Sep 17 00:00:00 2001
2015-11-16 02:46:34 +01:00
From: Aikar <aikar@aikar.co>
2016-03-01 00:09:49 +01:00
Date: Wed, 2 Mar 2016 23:55:20 -0600
2015-11-16 02:46:34 +01:00
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 899ce8f..83b14d9 100644
2015-11-16 02:46:34 +01:00
--- a/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
+++ b/src/main/java/org/bukkit/craftbukkit/CraftWorld.java
2016-05-12 04:07:46 +02:00
@@ -213,7 +213,13 @@ public class CraftWorld implements World {
2016-04-04 16:53:03 +02:00
}
2015-11-16 02:46:34 +01:00
2016-04-04 16:53:03 +02:00
private boolean unloadChunk0(int x, int z, boolean save, boolean safe) {
2016-03-01 00:09:49 +01:00
- net.minecraft.server.Chunk chunk = world.getChunkProviderServer().getChunkAt(x, z);
+ // Paper start - Don't create a chunk just to unload it
+ net.minecraft.server.Chunk chunk = world.getChunkProviderServer().getChunkIfLoaded(x, z);
2015-11-16 02:46:34 +01:00
+ if (chunk == null) {
+ return false;
+ }
2016-03-01 00:09:49 +01:00
+ // Paper end
2016-04-04 16:53:03 +02:00
+
2015-11-16 02:46:34 +01:00
if (chunk.mustSave) { // If chunk had previously been queued to save, must do save to avoid loss of that data
save = true;
}
--
2.8.3
2015-11-16 02:46:34 +01:00