corrections

This commit is contained in:
Bobblybook
2024-10-11 23:40:06 +11:00
parent 1a47bf429b
commit 161a29657b
2 changed files with 2 additions and 2 deletions

View File

@@ -154,7 +154,7 @@ bool NovosTargetPriorityAction::Execute(Event event)
for (Unit* primaryTarget : selectedTargets)
{
// Attack the first valid split target in the priority list
// Attack the first valid target in the priority list
if (primaryTarget)
{
if (AI_VALUE(Unit*, "current target") != primaryTarget)

View File

@@ -57,5 +57,5 @@ bool ArcaneFieldTrigger::IsActive()
bool GiftOfTharonjaTrigger::IsActive()
{
return bool(bot->HasAura(SPELL_GIFT_OF_THARONJA));
return bot->HasAura(SPELL_GIFT_OF_THARONJA);
}