From c9d341cb365f5c1397aa29bad9ce4c9c059100dd Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Mon, 21 Jul 2025 11:37:39 +0800 Subject: [PATCH] World channel talk --- src/PlayerbotAI.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/PlayerbotAI.cpp b/src/PlayerbotAI.cpp index 0d3f693be..8b5b3e041 100644 --- a/src/PlayerbotAI.cpp +++ b/src/PlayerbotAI.cpp @@ -1048,6 +1048,9 @@ void PlayerbotAI::HandleBotOutgoingPacket(WorldPacket const& packet) default: return; } + + if (chanName == "World") + return; // do not reply to self but always try to reply to real player if (guid1 != bot->GetGUID())