Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-16 21:10:17 +01:00
Cleaned up this worlduid stuff a little.
Dieser Commit ist enthalten in:
Ursprung
4cab8635db
Commit
83abbfe4d6
@ -393,7 +393,7 @@ public final class CraftServer implements Server {
|
|||||||
converter.convert(name, new ConvertProgressUpdater(console));
|
converter.convert(name, new ConvertProgressUpdater(console));
|
||||||
}
|
}
|
||||||
|
|
||||||
int dimension = 10 + console.worlds.size();
|
int dimension = Environment.values().length + 1 + console.worlds.size();
|
||||||
WorldServer internal = new WorldServer(console, new ServerNBTManager(new File("."), name, true), name, dimension, seed, environment, generator);
|
WorldServer internal = new WorldServer(console, new ServerNBTManager(new File("."), name, true), name, dimension, seed, environment, generator);
|
||||||
internal.worldMaps = console.worlds.get(0).worldMaps;
|
internal.worldMaps = console.worlds.get(0).worldMaps;
|
||||||
|
|
||||||
@ -491,8 +491,7 @@ public final class CraftServer implements Server {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public World getWorld(long uid) {
|
public World getWorld(long uid) {
|
||||||
for (String worldName : worlds.keySet()) {
|
for (World world : worlds.values()) {
|
||||||
org.bukkit.World world = worlds.get(worldName);
|
|
||||||
if (world.getUID() == uid) {
|
if (world.getUID() == uid) {
|
||||||
return world;
|
return world;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren