geforkt von Mirrors/Paper
Fix worlds loading improperly. Fixes BUKKIT-991
This patch fixes an incorrect path being passed to the WorldLoaderListener. It expects the world container, then checks convertable on the name. By: Eric Stokes <fernferret@gmail.com>
Dieser Commit ist enthalten in:
Ursprung
6924051264
Commit
d67053fa16
@ -623,7 +623,7 @@ public final class CraftServer implements Server {
|
|||||||
generator = getGenerator(name);
|
generator = getGenerator(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
Convertable converter = new WorldLoaderServer(folder);
|
Convertable converter = new WorldLoaderServer(getWorldContainer());
|
||||||
if (converter.isConvertable(name)) {
|
if (converter.isConvertable(name)) {
|
||||||
getLogger().info("Converting world '" + name + "'");
|
getLogger().info("Converting world '" + name + "'");
|
||||||
converter.convert(name, new ConvertProgressUpdater(console));
|
converter.convert(name, new ConvertProgressUpdater(console));
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren