mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 21:44:40 +01:00
855637f967
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing CraftBukkit Changes: e9f972d6 Improve CreativeCategory conversion c2698249 PR-1034: Fix exception on init of CraftCreativeCategory f48739ca Add tests for material creative categories
20 lines
973 B
Diff
20 lines
973 B
Diff
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
|
|
index 55c981f2c8070fc1bd9ecd4f4df140d9d0c68319..ff87e2690c696c2f055342c3828af5d6ff16b863 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
@@ -1296,7 +1296,7 @@ public final class CraftServer implements Server {
|
|
|
|
try {
|
|
if (save) {
|
|
- handle.save(null, true, true);
|
|
+ handle.save(null, true, false); // Paper - don't disable saving
|
|
}
|
|
|
|
handle.getChunkSource().close(save);
|