2022-02-22 23:28:34 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Tue, 22 Feb 2022 14:21:35 -0800
|
|
|
|
Subject: [PATCH] Put world into worldlist before initing the world
|
|
|
|
|
|
|
|
Some parts of legacy conversion will need the overworld
|
|
|
|
to get the legacy structure data storage
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2024-06-19 19:29:03 +02:00
|
|
|
index 0ec8f1c94279b75369ab6bae98789c60a971502c..4e2ce30bc67b0033107715a5a2dbb419bdf17a4f 100644
|
2022-02-22 23:28:34 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2024-06-14 03:30:23 +02:00
|
|
|
@@ -644,9 +644,10 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2022-02-22 23:28:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
worlddata.setModdedInfo(this.getServerModName(), this.getModdedStatus().shouldReportAsModified());
|
2024-01-18 18:52:00 +01:00
|
|
|
+ this.addLevel(world); // Paper - Put world into worldlist before initing the world; move up
|
2023-10-27 01:34:58 +02:00
|
|
|
this.initWorld(world, worlddata, this.worldData, worldoptions);
|
2022-02-22 23:28:34 +01:00
|
|
|
|
2022-08-14 10:03:13 +02:00
|
|
|
- this.addLevel(world);
|
2024-01-18 18:52:00 +01:00
|
|
|
+ // Paper - Put world into worldlist before initing the world; move up
|
2022-02-22 23:28:34 +01:00
|
|
|
this.getPlayerList().addWorldborderListener(world);
|
|
|
|
|
|
|
|
if (worlddata.getCustomBossEvents() != null) {
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2024-06-14 14:11:52 +02:00
|
|
|
index bce783d63dc5d1ed9cda135b22bb78aa1be3ea17..dace717d426c1af257ea2f7728d5e5b7850ba568 100644
|
2022-02-22 23:28:34 +01:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
2024-06-14 03:30:23 +02:00
|
|
|
@@ -1323,10 +1323,11 @@ public final class CraftServer implements Server {
|
2022-02-22 23:28:34 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2024-01-18 18:52:00 +01:00
|
|
|
+ this.console.addLevel(internal); // Paper - Put world into worldlist before initing the world; move up
|
2022-12-07 22:35:34 +01:00
|
|
|
this.console.initWorld(internal, worlddata, worlddata, worlddata.worldGenOptions());
|
2022-02-22 23:28:34 +01:00
|
|
|
|
|
|
|
internal.setSpawnSettings(true, true);
|
2022-08-14 10:03:13 +02:00
|
|
|
- this.console.addLevel(internal);
|
2024-01-18 18:52:00 +01:00
|
|
|
+ // Paper - Put world into worldlist before initing the world; move up
|
2022-02-22 23:28:34 +01:00
|
|
|
|
|
|
|
this.getServer().prepareLevels(internal.getChunkSource().chunkMap.progressListener, internal);
|
2024-01-24 15:57:53 +01:00
|
|
|
internal.entityManager.tick(); // SPIGOT-6526: Load pending entities so they are available to the API
|