fix(Core/Pets): Master Demonologist should not be removed on pet resummon. (#9317)
Fixes #8994
This commit is contained in:
parent
b3c7d52449
commit
8d579b54ea
1 changed files with 1 additions and 1 deletions
|
|
@ -3235,7 +3235,7 @@ void Spell::EffectSummonPet(SpellEffIndex effIndex)
|
|||
for (Unit::AuraApplicationMap::iterator i = myAuras.begin(); i != myAuras.end();)
|
||||
{
|
||||
Aura const* aura = i->second->GetBase();
|
||||
if (!aura->IsPassive() && aura->CanBeSentToClient())
|
||||
if (!aura->IsPassive() && !OldSummon->IsPetAura(aura) && aura->CanBeSentToClient())
|
||||
OldSummon->RemoveAura(i);
|
||||
else
|
||||
++i;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue