mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-05 18:27:17 +01:00
Fixed .createWorld not respecting container folder 100%. Thanks to plleg for the PR.
This commit is contained in:
parent
366d310186
commit
548ccabe2f
1 changed files with 1 additions and 1 deletions
|
@ -514,7 +514,7 @@ public final class CraftServer implements Server {
|
|||
|
||||
String name = creator.name();
|
||||
ChunkGenerator generator = creator.generator();
|
||||
File folder = new File(name);
|
||||
File folder = new File(getWorldContainer(), name);
|
||||
World world = getWorld(name);
|
||||
WorldType type = WorldType.a(creator.type().getName());
|
||||
|
||||
|
|
Loading…
Reference in a new issue