diff options
Diffstat (limited to 'src/guiLuaApi.cpp')
-rw-r--r-- | src/guiLuaApi.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/guiLuaApi.cpp b/src/guiLuaApi.cpp index 4ed5cb24c..6bf8df607 100644 --- a/src/guiLuaApi.cpp +++ b/src/guiLuaApi.cpp @@ -430,6 +430,10 @@ int guiLuaApi::l_get_modstore_details(lua_State *L) lua_pushstring(L,current_mod.versions[0].file.c_str()); lua_settable(L, top); + lua_pushstring(L,"screenshot_url"); + lua_pushstring(L,current_mod.titlepic.file.c_str()); + lua_settable(L, top); + lua_pushstring(L,"license"); lua_pushstring(L,current_mod.license.shortinfo.c_str()); lua_settable(L, top); |