mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-20 14:08:57 +01:00
#831: Reload unloaded main worlds correctly
By: Kermina Awad <kerminaawad@gmail.com>
This commit is contained in:
parent
dfc592aec5
commit
9764b58089
1 changed files with 9 additions and 1 deletions
|
@ -1031,7 +1031,15 @@ public final class CraftServer implements Server {
|
||||||
chunkgenerator = worlddimension.c();
|
chunkgenerator = worlddimension.c();
|
||||||
}
|
}
|
||||||
|
|
||||||
ResourceKey<net.minecraft.world.level.World> worldKey = ResourceKey.a(IRegistry.L, new MinecraftKey(name.toLowerCase(java.util.Locale.ENGLISH)));
|
ResourceKey<net.minecraft.world.level.World> worldKey;
|
||||||
|
String levelName = this.getServer().getDedicatedServerProperties().levelName;
|
||||||
|
if (name.equals(levelName + "_nether")) {
|
||||||
|
worldKey = net.minecraft.world.level.World.THE_NETHER;
|
||||||
|
} else if (name.equals(levelName + "_the_end")) {
|
||||||
|
worldKey = net.minecraft.world.level.World.THE_END;
|
||||||
|
} else {
|
||||||
|
worldKey = ResourceKey.a(IRegistry.L, new MinecraftKey(name.toLowerCase(java.util.Locale.ENGLISH)));
|
||||||
|
}
|
||||||
|
|
||||||
WorldServer internal = (WorldServer) new WorldServer(console, console.executorService, worldSession, worlddata, worldKey, dimensionmanager, getServer().worldLoadListenerFactory.create(11),
|
WorldServer internal = (WorldServer) new WorldServer(console, console.executorService, worldSession, worlddata, worldKey, dimensionmanager, getServer().worldLoadListenerFactory.create(11),
|
||||||
chunkgenerator, worlddata.getGeneratorSettings().isDebugWorld(), j, creator.environment() == Environment.NORMAL ? list : ImmutableList.of(), true, creator.environment(), generator);
|
chunkgenerator, worlddata.getGeneratorSettings().isDebugWorld(), j, creator.environment() == Environment.NORMAL ? list : ImmutableList.of(), true, creator.environment(), generator);
|
||||||
|
|
Loading…
Add table
Reference in a new issue