aboutsummaryrefslogtreecommitdiff
path: root/src/content/subgames.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/content/subgames.cpp')
-rw-r--r--src/content/subgames.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/content/subgames.cpp b/src/content/subgames.cpp
index 3658fa83e..c50c6f429 100644
--- a/src/content/subgames.cpp
+++ b/src/content/subgames.cpp
@@ -380,11 +380,21 @@ void loadGameConfAndInitWorld(const std::string &path, const std::string &name,
// Create world.mt if does not already exist
std::string worldmt_path = final_path + DIR_DELIM "world.mt";
if (!fs::PathExists(worldmt_path)) {
- Settings conf;
+ Settings gameconf;
+ std::string gameconf_path = gamespec.path + DIR_DELIM "game.conf";
+ gameconf.readConfigFile(gameconf_path.c_str());
+
+ Settings conf; // for world.mt
conf.set("world_name", name);
conf.set("gameid", gamespec.id);
- conf.set("backend", "sqlite3");
+
+ std::string backend = "sqlite3";
+ if (gameconf.exists("map_persistent") && !gameconf.getBool("map_persistent")) {
+ backend = "dummy";
+ }
+ conf.set("backend", backend);
+
conf.set("player_backend", "sqlite3");
conf.set("auth_backend", "sqlite3");
conf.set("mod_storage_backend", "sqlite3");