Added new bukkit.yml entry (settings -> world-container) to control the directory worlds are stored in

This commit is contained in:
Nathan Adams
2011-10-12 04:24:41 +01:00
parent f4229fcadd
commit 75d9b04deb
2 changed files with 7 additions and 3 deletions

View File

@@ -509,7 +509,7 @@ public final class CraftServer implements Server {
}
int dimension = 10 + console.worlds.size();
WorldServer internal = new WorldServer(console, new ServerNBTManager(new File("."), name, true), name, dimension, new WorldSettings(creator.seed(), getDefaultGameMode().getValue(), true), creator.environment(), generator);
WorldServer internal = new WorldServer(console, new ServerNBTManager(getWorldContainer(), name, true), name, dimension, new WorldSettings(creator.seed(), getDefaultGameMode().getValue(), true), creator.environment(), generator);
if (!(worlds.containsKey(name.toLowerCase()))) {
return null;
@@ -898,4 +898,8 @@ public final class CraftServer implements Server {
}
}
}
public File getWorldContainer() {
return new File(configuration.getString("settings.world-container", "."));
}
}