=== modified file 'src/tron/gServerBrowser.cpp' --- src/tron/gServerBrowser.cpp 2013-01-30 17:51:47 +0000 +++ src/tron/gServerBrowser.cpp 2015-05-14 13:15:14 +0000 @@ -451,9 +451,10 @@ { run->show = false; tString userNames = sg_enableFriendsCasing ? run->UserNames() : run->UserNames().ToLower(); + tString globalIds = sg_enableFriendsCasing ? run->UserGlobalIDs() : run->UserGlobalIDs().ToLower(); for (i = MAX_FRIENDS-1; i>=0; i--) { - if (run->Users() > 0 && friends[i].Len() > 1 && userNames.StrPos(filteredFriends[i]) >= 0) + if (run->Users() > 0 && friends[i].Len() > 1 && (userNames.StrPos(filteredFriends[i]) >= 0 || globalIds.StrPos(filteredFriends[i]) >= 0)) { oneFound = true; run->show = true;