PaperMC/patches/server/0676-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-10-25 13:19:23 +02:00
index b3e5fc3a417be2af8ed6591f67f8d56c4ca86d74..2860aa8f75ec5901023f88047cb4cb96298a99e0 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-10-23 22:52:43 +02:00
@@ -1386,7 +1386,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);