Skip to content

Commit

Permalink
Fix broken serverdescription in multiplayer tab
Browse files Browse the repository at this point in the history
  • Loading branch information
sapier authored and sapier committed Jun 19, 2014
1 parent 8af44f8 commit 1c7cc26
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions builtin/mainmenu/tab_multiplayer.lua
Expand Up @@ -40,10 +40,11 @@ local function get_formspec(tabview, name, tabdata)
"pwdfield[9.3,4.5;2.5,0.5;te_pwd;]" ..
"textarea[9.3,0.25;2.5,2.75;;"

if menudata.fav_selected ~= nil and
menudata.favorites[menu.fav_selected].description ~= nil then
if tabdata.fav_selected ~= nil and
menudata.favorites[tabdata.fav_selected] ~= nil and
menudata.favorites[tabdata.fav_selected].description ~= nil then
retval = retval ..
core.formspec_escape(menu.favorites[menu.fav_selected].description,true)
core.formspec_escape(menudata.favorites[tabdata.fav_selected].description,true)
end

retval = retval ..
Expand Down

0 comments on commit 1c7cc26

Please sign in to comment.