From 39ca6f83e65440f0ec4057fed761c2aaab88e271 Mon Sep 17 00:00:00 2001 From: hondacrx Date: Tue, 31 May 2022 14:16:17 -0400 Subject: [PATCH] Core/PacketIO: Fixed incorrect packet response when ignoring players Port From (https://github.com/TrinityCore/TrinityCore/commit/2c99bc18f22e0660770c378a72cad57808fd6460) --- Source/Game/Handlers/SocialHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Game/Handlers/SocialHandler.cs b/Source/Game/Handlers/SocialHandler.cs index fd6be009e..a78b6750c 100644 --- a/Source/Game/Handlers/SocialHandler.cs +++ b/Source/Game/Handlers/SocialHandler.cs @@ -343,7 +343,7 @@ namespace Game } } - Global.SocialMgr.SendFriendStatus(GetPlayer(), ignoreResult, ObjectGuid.Empty); + Global.SocialMgr.SendFriendStatus(GetPlayer(), ignoreResult, ignoreGuid); } [WorldPacketHandler(ClientOpcodes.DelIgnore)]