mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-23 05:36:23 +00:00
fix(Core/PetAI): Combat spells should be casted when pet starts attack. (#9845)
Fixes #2140
This commit is contained in:
@@ -252,8 +252,10 @@ void PetAI::UpdateAI(uint32 diff)
|
||||
if (spellInfo->CanBeUsedInCombat())
|
||||
{
|
||||
// Check if we're in combat or commanded to attack (exlude auras with infinity duration)
|
||||
if (!me->IsInCombat() && !me->GetCharmInfo()->IsCommandAttack() && spellInfo->GetMaxDuration() != -1)
|
||||
if (!me->IsInCombat() && spellInfo->GetMaxDuration() != -1 && !me->IsPetInCombat())
|
||||
{
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
Spell* spell = new Spell(me, spellInfo, TRIGGERED_NONE);
|
||||
|
||||
Reference in New Issue
Block a user