From 7fa1ab36a3af189cb439d318fdf0fa67d849fe6e Mon Sep 17 00:00:00 2001 From: EricksOliveira Date: Tue, 5 Nov 2024 15:15:09 +0000 Subject: [PATCH] Update LfgAccept (#681) Fixed issue with Bots refusing to join DungeonFinder. --- src/strategy/actions/LfgActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/actions/LfgActions.cpp b/src/strategy/actions/LfgActions.cpp index 9a07f527..3e36086d 100644 --- a/src/strategy/actions/LfgActions.cpp +++ b/src/strategy/actions/LfgActions.cpp @@ -188,7 +188,7 @@ bool LfgAcceptAction::Execute(Event event) LOG_INFO("playerbots", "Bot {} {}:{} <{}> is in combat and refuses LFG proposal {}", bot->GetGUID().ToString().c_str(), bot->GetTeamId() == TEAM_ALLIANCE ? "A" : "H", bot->GetLevel(), bot->GetName().c_str(), id); - sLFGMgr->UpdateProposal(id, bot->GetGUID(), false); + sLFGMgr->UpdateProposal(id, bot->GetGUID(), true); return true; }