Use user folder for gamemanager too
authorsapier <Sapier at GMX dot net>
Wed, 17 Jul 2013 19:03:00 +0000 (21:03 +0200)
committerPilzAdam <pilzadam@minetest.net>
Mon, 22 Jul 2013 16:10:00 +0000 (18:10 +0200)
src/guiLuaApi.cpp

index 211a6e1aaf96da8bbd1969526a1a8b5c98d7c9c5..b00bb5a84f761ccc1b05f3554d1f75daec840058 100644 (file)
@@ -821,7 +821,7 @@ int guiLuaApi::l_get_modpath(lua_State *L)
 int guiLuaApi::l_get_gamepath(lua_State *L)
 {
        std::string gamepath
-                       = fs::RemoveRelativePathComponents(porting::path_share + DIR_DELIM + "games" + DIR_DELIM);
+                       = fs::RemoveRelativePathComponents(porting::path_user + DIR_DELIM + "games" + DIR_DELIM);
        lua_pushstring(L, gamepath.c_str());
        return 1;
 }