Paper/patches/server/0705-Fix-saving-in-unloadWorld.patch

21 lines
978 B
Diff
Raw Normal View History

2022-03-16 13:08:50 +01:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Philip Kelley <philip@thoriumcube.org>
Date: Wed, 16 Mar 2022 12:05:59 +0000
Subject: [PATCH] Fix saving in unloadWorld
Change savingDisabled to false to ensure ServerLevel's saving logic gets called when unloadWorld is called with save = true
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
2024-04-25 22:34:46 +02:00
index e1903d551e2183cc92dfb4fc832ec5bf961475d1..4f7df8765254bcac61d769e87eef946bc5eab682 100644
2022-03-16 13:08:50 +01:00
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
2024-04-25 19:42:24 +02:00
@@ -1350,7 +1350,7 @@ public final class CraftServer implements Server {
2022-03-16 13:08:50 +01:00
try {
if (save) {
- handle.save(null, true, true);
+ handle.save(null, true, false); // Paper - Fix saving in unloadWorld
2022-03-16 13:08:50 +01:00
}
handle.getChunkSource().close(save);