Skip to content

Commit

Permalink
Fix remnant bugs on mainmenu
Browse files Browse the repository at this point in the history
- Stop attempting to start a world when no world's created/selected in server tab
- Better world's indexes handling between subgames lists
  • Loading branch information
jp authored and kwolekr committed Jul 10, 2015
1 parent 1a1774a commit c3dead7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
9 changes: 6 additions & 3 deletions builtin/mainmenu/tab_server.lua
Expand Up @@ -113,12 +113,12 @@ local function main_button_handler(this, fields, name, tabdata)
world_doubleclick or
fields["key_enter"] then
local selected = core.get_textlist_index("srv_worlds")
if selected ~= nil then
gamedata.selected_world = menudata.worldlist:get_raw_index(selected)
if selected ~= nil and gamedata.selected_world ~= 0 then
gamedata.playername = fields["te_playername"]
gamedata.password = fields["te_passwd"]
gamedata.port = fields["te_serverport"]
gamedata.address = ""
gamedata.selected_world = menudata.worldlist:get_raw_index(selected)

core.setting_set("port",gamedata.port)
if fields["te_serveraddr"] ~= nil then
Expand All @@ -133,8 +133,11 @@ local function main_button_handler(this, fields, name, tabdata)
end

core.start()
return true
else
gamedata.errormessage =
fgettext("No world created or selected!")
end
return true
end

if fields["world_create"] ~= nil then
Expand Down
9 changes: 6 additions & 3 deletions builtin/mainmenu/tab_singleplayer.lua
Expand Up @@ -40,10 +40,13 @@ local function singleplayer_refresh_gamebar()
menudata.worldlist:set_filtercriteria(gamemgr.games[j].id)
local index = filterlist.get_current_index(menudata.worldlist,
tonumber(core.setting_get("mainmenu_last_selected_world")))
local selected = core.get_textlist_index("sp_worlds")
if not index or index < 1 then
index = math.min(core.get_textlist_index("sp_worlds"),
#menudata.worldlist:get_list())
local selected = core.get_textlist_index("sp_worlds")
if selected ~= nil and selected < #menudata.worldlist:get_list() then
index = selected
else
index = #menudata.worldlist:get_list()
end
end
menu_worldmt_legacy(index)
return true
Expand Down

0 comments on commit c3dead7

Please sign in to comment.