From: Paul Ouellette Date: Thu, 10 Jan 2019 06:54:20 +0000 (-0500) Subject: Make sqlite3 the default auth backend (#8085) X-Git-Tag: 5.0.0~82 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a18c310adb075b1ba94950b6ee811c68dec2f66b;p=oweals%2Fminetest.git Make sqlite3 the default auth backend (#8085) --- 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"));