Skip to content

Commit 37b9ca1

Browse files
authored
Add flush parameter to World#save (#12330)
1 parent 7819df1 commit 37b9ca1

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

paper-api/src/main/java/org/bukkit/World.java

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
package org.bukkit;
22

3-
import java.io.File;
43
import io.papermc.paper.raytracing.PositionedRayTraceConfigurationBuilder;
5-
import org.bukkit.generator.ChunkGenerator;
6-
4+
import java.io.File;
75
import java.util.ArrayList;
86
import java.util.Collection;
97
import java.util.HashMap;
@@ -2410,9 +2408,17 @@ public default boolean createExplosion(@NotNull Entity source, float power) {
24102408
public BiomeProvider getBiomeProvider();
24112409

24122410
/**
2413-
* Saves world to disk
2411+
* Saves the world to disk
2412+
*/
2413+
default void save() {
2414+
save(false);
2415+
}
2416+
2417+
/**
2418+
* Saves the world to disk
2419+
* @param flush Whether to wait for the chunk writer to finish
24142420
*/
2415-
public void save();
2421+
void save(boolean flush);
24162422

24172423
/**
24182424
* Gets a list of all applied {@link BlockPopulator}s for this World

paper-server/src/main/java/org/bukkit/craftbukkit/CraftWorld.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1264,13 +1264,13 @@ public Entity getEntity(UUID uuid) {
12641264
// Paper end
12651265

12661266
@Override
1267-
public void save() {
1267+
public void save(boolean flush) {
12681268
org.spigotmc.AsyncCatcher.catchOp("world save"); // Spigot
12691269
this.server.checkSaveState();
12701270
boolean oldSave = this.world.noSave;
12711271

12721272
this.world.noSave = false;
1273-
this.world.save(null, false, false);
1273+
this.world.save(null, flush, false);
12741274

12751275
this.world.noSave = oldSave;
12761276
}

0 commit comments

Comments
 (0)