From eacce5adf3138e016a3a9b27689eab1ea0c5f72e Mon Sep 17 00:00:00 2001 From: avirar Date: Sun, 22 Dec 2024 10:54:19 +1100 Subject: [PATCH] Fixed bot say --- src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp b/src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp index 9a30c8d0..dc0a7da5 100644 --- a/src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp +++ b/src/strategy/raids/ulduar/RaidUlduarBossHelper.cpp @@ -190,7 +190,7 @@ void RazorscaleBossHelper::AssignRolesBasedOnHealth() if (GET_PLAYERBOT_AI(newMainTank) && GET_PLAYERBOT_AI(newMainTank)->IsRealPlayer()) { const std::string text = newMainTank->GetName() + ", please taunt Razorscale now!"; - botAI->Say(text); + bot->Say(text, LANG_UNIVERSAL); } _lastRoleSwapTime = std::time(nullptr);