This commit is contained in:
DS 2024-04-20 11:18:10 +02:00 committed by GitHub
commit 870a147ba7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -4230,7 +4230,7 @@ ModStorageDatabase *Server::openModStorageDatabase(const std::string &world_path
warningstream << "/!\\ You are using the old mod storage files backend. "
<< "This backend is deprecated and may be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl;
<< "please read http://wiki.minetest.net/Database_backends ." << std::endl;
return openModStorageDatabase(backend, world_path, world_mt);
}

View File

@ -507,14 +507,14 @@ void ServerEnvironment::init()
warningstream << "/!\\ You are using old player file backend. "
<< "This backend is deprecated and will be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 or PostgreSQL is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl;
<< "please read http://wiki.minetest.net/Database_backends ." << std::endl;
}
if (auth_backend_name == "files") {
warningstream << "/!\\ You are using old auth file backend. "
<< "This backend is deprecated and will be removed in a future release /!\\"
<< std::endl << "Switching to SQLite3 is advised, "
<< "please read http://wiki.minetest.net/Database_backends." << std::endl;
<< "please read http://wiki.minetest.net/Database_backends ." << std::endl;
}
m_player_database = openPlayerDatabase(player_backend_name, world_path, conf);