Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -529,8 +529,9 @@ void updateBuddyInfo( void )
// dont allow self
if (profileID != user_id)
{
// dont show if already friends
if (!pSocialInterface->IsUserFriend(profileID))
// dont show if already friends or if in QM lobby
bool bIsInQMLobby = !TheNGMPGame->isGameInProgress() && TheNGMPGame->isQMGame();
if (!pSocialInterface->IsUserFriend(profileID) && !bIsInQMLobby)
{
setCurrentGameMembers.insert(profileID);

Expand Down
Loading