GPCM: Fix mutual friend bug again

This commit is contained in:
mkwcat
2023-12-19 11:34:08 -05:00
parent 357a3d5b14
commit 978a7d3956

View File

@@ -88,7 +88,6 @@ func (g *GameSpySession) addFriend(command common.GameSpyCommand) {
// Friends are now mutual!
// TODO: Add a limit
g.AuthFriendList = append(g.AuthFriendList, uint32(newProfileId))
newSession.AuthFriendList = append(newSession.AuthFriendList, uint32(g.User.ProfileId))
sendMessageToProfileId("2", g.User.ProfileId, uint32(newProfileId), addFriendMessage)
}