diff options
Diffstat (limited to 'src/game/MiscHandler.cpp')
-rw-r--r-- | src/game/MiscHandler.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/MiscHandler.cpp b/src/game/MiscHandler.cpp index 474199213af..9d08539497a 100644 --- a/src/game/MiscHandler.cpp +++ b/src/game/MiscHandler.cpp @@ -772,7 +772,8 @@ void WorldSession::HandleAddIgnoreOpcode( WorldPacket & recv_data ) { ignoreResult = FRIEND_IGNORE_ADDED; - _player->GetSocial()->AddToSocialList(GUID_LOPART(IgnoreGuid), true); + if(!_player->GetSocial()->AddToSocialList(GUID_LOPART(IgnoreGuid), true)) + ignoreResult = FRIEND_IGNORE_FULL; } else if(ignoreResult==FRIEND_IGNORE_ALREADY) { |