Skip to content

Commit

Permalink
MP Lobby: fixed every single user name being bold
Browse files Browse the repository at this point in the history
If everyone's registered... no one is. :P

(cherry-picked from commit d789c2e)
  • Loading branch information
Vultraz committed Oct 7, 2018
1 parent 5c66a97 commit 0b0a4d9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/gui/dialogs/multiplayer/lobby.cpp
Expand Up @@ -640,9 +640,15 @@ void mp_lobby::update_playerlist()
<< "\n";
}

// TODO: on the official server this results in every name being bold since we
// require a registered account. Leaving this commented out in case we ever
// walk that back and want to have such an indication again (it's useless for
// custom servers since registered logins aren't supported there).
#if 0
if(user.registered) {
name = "<b>" + name + "</b>";
}
#endif

icon_ss << ".png";

Expand Down

0 comments on commit 0b0a4d9

Please sign in to comment.