mirror of
https://github.com/minetest/minetest.git
synced 2024-11-10 01:33:46 +01:00
Fix serverlist on -DRUN_IN_PLACE=0 (use path_user instead of path_share)
This commit is contained in:
parent
88ffb3f73b
commit
c33b993397
@ -38,10 +38,12 @@ std::string getFilePath()
|
||||
{
|
||||
std::string serverlist_file = g_settings->get("serverlist_file");
|
||||
|
||||
std::string rel_path = std::string("client") + DIR_DELIM
|
||||
+ "serverlist" + DIR_DELIM
|
||||
+ serverlist_file;
|
||||
std::string path = porting::path_share + DIR_DELIM + rel_path;
|
||||
std::string dir_path = std::string("client") + DIR_DELIM
|
||||
+ "serverlist" + DIR_DELIM;
|
||||
fs::CreateDir(porting::path_user + DIR_DELIM + "client");
|
||||
fs::CreateDir(porting::path_user + DIR_DELIM + dir_path);
|
||||
std::string rel_path = dir_path + serverlist_file;
|
||||
std::string path = porting::path_user + DIR_DELIM + rel_path;
|
||||
return path;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user