geforkt von Mirrors/Paper
Try find conflicting UIDs
Dieser Commit ist enthalten in:
Ursprung
0993e6cbd1
Commit
cc635ed51c
@ -1,6 +1,7 @@
|
|||||||
package net.minecraft.server;
|
package net.minecraft.server;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
|
||||||
public class WorldData {
|
public class WorldData {
|
||||||
|
|
||||||
@ -46,6 +47,10 @@ public class WorldData {
|
|||||||
this.worldUID = (System.nanoTime() << 20) + this.a;
|
this.worldUID = (System.nanoTime() << 20) + this.a;
|
||||||
nbttagcompound.setLong("WorldUID", this.worldUID);
|
nbttagcompound.setLong("WorldUID", this.worldUID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Bukkit.getServer().getWorld(worldUID) != null) {
|
||||||
|
throw new IllegalStateException("World '" + name + "' contains a conflicting UID with existing world. Please edit its level.dat and remove WorldUID, or delete its level.dat (and lose its seed/etc).");
|
||||||
|
}
|
||||||
// CraftBukkit end
|
// CraftBukkit end
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren