fix(Core/Creature): Don't call reset if still in combat (#20675)
This commit is contained in:
parent
3f6fe11f83
commit
0b771cbc92
1 changed files with 3 additions and 0 deletions
|
|
@ -624,6 +624,9 @@ void BossAI::_Reset()
|
|||
if (!me->IsAlive())
|
||||
return;
|
||||
|
||||
if (me->IsEngaged())
|
||||
return;
|
||||
|
||||
me->SetCombatPulseDelay(0);
|
||||
me->ResetLootMode();
|
||||
events.Reset();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue