Gift/Mark of the Wild

This commit is contained in:
avirar 2025-01-04 17:32:53 +11:00 committed by GitHub
parent 058a34e216
commit 9acf163564
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,12 +9,16 @@
bool MarkOfTheWildOnPartyTrigger::IsActive()
{
return BuffOnPartyTrigger::IsActive() && !botAI->HasAura("gift of the wild", GetTarget());
// Check both Gift & Mark auras
return BuffOnPartyTrigger::IsActive() &&
!botAI->HasAnyAuraOf(GetTarget(), "gift of the wild", "mark of the wild", nullptr);
}
bool MarkOfTheWildTrigger::IsActive()
{
return BuffTrigger::IsActive() && !botAI->HasAura("gift of the wild", GetTarget());
// Same check for single-target scenario
return BuffTrigger::IsActive() &&
!botAI->HasAnyAuraOf(GetTarget(), "gift of the wild", "mark of the wild", nullptr);
}
bool ThornsOnPartyTrigger::IsActive()