remove debug info

This commit is contained in:
Yunfan Li
2023-06-11 19:16:56 +08:00
parent e7ad355396
commit 617d0ee031
2 changed files with 11 additions and 11 deletions

View File

@@ -60,14 +60,14 @@ bool ComboPointsAvailableTrigger::IsActive()
bool LoseAggroTrigger::IsActive()
{
Unit* mt = AI_VALUE(Unit*, "main tank");
if (mt) {
botAI->TellMasterNoFacing("Has aggro: " + std::to_string(AI_VALUE2(bool, "has aggro", "current target"))
+ " My main tank is: " + mt->GetName());
} else {
botAI->TellMasterNoFacing("Has aggro: " + std::to_string(AI_VALUE2(bool, "has aggro", "current target"))
+ " No main tank detected");
}
// Unit* mt = AI_VALUE(Unit*, "main tank");
// if (mt) {
// botAI->TellMasterNoFacing("Has aggro: " + std::to_string(AI_VALUE2(bool, "has aggro", "current target"))
// + " My main tank is: " + mt->GetName());
// } else {
// botAI->TellMasterNoFacing("Has aggro: " + std::to_string(AI_VALUE2(bool, "has aggro", "current target"))
// + " No main tank detected");
// }
return !AI_VALUE2(bool, "has aggro", "current target");
}