mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-28 13:36:16 +01:00
Use generators from bukkit.yml if none was specified at createWorld
This commit is contained in:
parent
dac47b0134
commit
c56d0c0842
@ -387,6 +387,10 @@ public final class CraftServer implements Server {
|
|||||||
throw new IllegalArgumentException("File exists with the name '" + name + "' and isn't a folder");
|
throw new IllegalArgumentException("File exists with the name '" + name + "' and isn't a folder");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (generator == null) {
|
||||||
|
generator = getGenerator(name);
|
||||||
|
}
|
||||||
|
|
||||||
Convertable converter = new WorldLoaderServer(folder);
|
Convertable converter = new WorldLoaderServer(folder);
|
||||||
if (converter.isConvertable(name)) {
|
if (converter.isConvertable(name)) {
|
||||||
getLogger().info("Converting world '" + name + "'");
|
getLogger().info("Converting world '" + name + "'");
|
||||||
|
Loading…
Reference in New Issue
Block a user