1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Display Minetest header when menu_last_game value isn't available anymore (#10751)

This commit is contained in:
Zughy
2020-12-28 12:56:58 +00:00
committed by GitHub
parent 8f72d4b294
commit 55dba1bc6d
2 changed files with 11 additions and 0 deletions

View File

@@ -106,6 +106,16 @@ local function init_globals()
if last_tab and tv_main.current_tab ~= last_tab then
tv_main:set_tab(last_tab)
end
-- In case the folder of the last selected game has been deleted,
-- display "Minetest" as a header
if tv_main.current_tab == "local" then
local game = pkgmgr.find_by_gameid(core.settings:get("menu_last_game"))
if game == nil then
mm_texture.reset()
end
end
ui.set_default("maintab")
tv_main:show()