1
0
镜像自地址 https://github.com/luanti-org/luanti.git 已同步 2025-11-06 02:05:30 +01:00

Minor fixes for file/modlist download in mainmenu

这个提交包含在:
sapier
2014-04-06 15:20:45 +02:00
父节点 142e2d3b74
当前提交 a88c685f02

查看文件

@@ -387,11 +387,6 @@ int ModApiMainMenu::l_get_modstore_details(lua_State *L)
/******************************************************************************/
int ModApiMainMenu::l_get_modstore_list(lua_State *L)
{
std::string listtype = "local";
if (!lua_isnone(L,1)) {
listtype = luaL_checkstring(L,1);
}
Json::Value mods;
std::string url = "";
try{
@@ -990,6 +985,9 @@ int ModApiMainMenu::l_download_file(lua_State *L)
lua_pushboolean(L,true);
return 1;
}
} else {
errorstream << "DOWNLOAD denied: " << absolute_destination
<< " isn't a allowed path" << std::endl;
}
lua_pushboolean(L,false);
return 1;