Skip to content

Commit ba65e2a

Browse files
committedAug 6, 2013
Fix worldlist in servertab being filtered by selected game
1 parent 53bf62b commit ba65e2a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎builtin/mainmenu.lua

+5-1
Original file line numberDiff line numberDiff line change
@@ -864,7 +864,11 @@ function tabbuilder.init()
864864
end
865865
end
866866

867-
menu.update_gametype()
867+
if tabbuilder.current_tab ~= "singleplayer" then
868+
menu.update_gametype(true)
869+
else
870+
menu.update_gametype()
871+
end
868872
end
869873

870874
--------------------------------------------------------------------------------

0 commit comments

Comments
 (0)
Please sign in to comment.