diff options
author | SmallJoker <mk939@ymail.com> | 2022-09-16 12:58:46 +0200 |
---|---|---|
committer | SmallJoker <mk939@ymail.com> | 2022-09-16 13:01:23 +0200 |
commit | b5e7280708221cdcca89df7d16f2aea19e4b3c4c (patch) | |
tree | a5e6f248b8c48eff22e83d270e1f8cca3f96c6b5 /builtin/mainmenu | |
parent | f3f3b752f2b13e1edb6d495a161fe49e960453c9 (diff) | |
download | minetest-b5e7280708221cdcca89df7d16f2aea19e4b3c4c.tar.xz |
Content tab: Fix content download broken by bc3dccc
Diffstat (limited to 'builtin/mainmenu')
-rw-r--r-- | builtin/mainmenu/dlg_contentstore.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/mainmenu/dlg_contentstore.lua b/builtin/mainmenu/dlg_contentstore.lua index b599cd075..9b73b526e 100644 --- a/builtin/mainmenu/dlg_contentstore.lua +++ b/builtin/mainmenu/dlg_contentstore.lua @@ -354,7 +354,7 @@ function install_dialog.get_formspec() local game_list = {} for i, game in ipairs(pkgmgr.games) do - game_list[i] = core.formspec_escape(game[i].title) + game_list[i] = core.formspec_escape(game.title) end local package = install_dialog.package |