From a18c310adb075b1ba94950b6ee811c68dec2f66b Mon Sep 17 00:00:00 2001 From: Paul Ouellette Date: Thu, 10 Jan 2019 01:54:20 -0500 Subject: [PATCH] Make sqlite3 the default auth backend (#8085) --- src/content/subgames.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/content/subgames.cpp b/src/content/subgames.cpp index 9f05b751d..4bdd84f41 100644 --- a/src/content/subgames.cpp +++ b/src/content/subgames.cpp @@ -307,6 +307,7 @@ bool loadGameConfAndInitWorld(const std::string &path, const SubgameSpec &gamesp conf.set("gameid", gamespec.id); conf.set("backend", "sqlite3"); conf.set("player_backend", "sqlite3"); + conf.set("auth_backend", "sqlite3"); conf.setBool("creative_mode", g_settings->getBool("creative_mode")); conf.setBool("enable_damage", g_settings->getBool("enable_damage"));