mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
Still fixing bot say
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
#include "ChatHelper.h"
|
||||||
#include "RaidUlduarBossHelper.h"
|
#include "RaidUlduarBossHelper.h"
|
||||||
#include "ObjectAccessor.h"
|
#include "ObjectAccessor.h"
|
||||||
#include "GameObject.h"
|
#include "GameObject.h"
|
||||||
@@ -189,7 +190,10 @@ void RazorscaleBossHelper::AssignRolesBasedOnHealth()
|
|||||||
// Notify if the new main tank is a real player
|
// Notify if the new main tank is a real player
|
||||||
if (GET_PLAYERBOT_AI(newMainTank) && GET_PLAYERBOT_AI(newMainTank)->IsRealPlayer())
|
if (GET_PLAYERBOT_AI(newMainTank) && GET_PLAYERBOT_AI(newMainTank)->IsRealPlayer())
|
||||||
{
|
{
|
||||||
const std::string text = newMainTank->GetName() + ", please taunt Razorscale now!";
|
const std::string playerName = newMainTank->GetName();
|
||||||
|
const std::string text = playerName + " please taunt Razorscale now!";
|
||||||
|
|
||||||
|
// const std::string text = newMainTank->GetName() + ", please taunt Razorscale now!";
|
||||||
bot->Say(text, LANG_UNIVERSAL);
|
bot->Say(text, LANG_UNIVERSAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user