diff options
Diffstat (limited to 'src/game/SpellAuras.cpp')
-rw-r--r-- | src/game/SpellAuras.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index 67791f825d4..38ca4e91d4c 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -882,7 +882,7 @@ void Aura::_AddAura() SendAuraUpdate(false); // update for out of range group members - m_target->UpdateAuraForGroup(slot); + m_target->UpdateAuraForGroup(slot, true); } } else // use found slot @@ -970,7 +970,7 @@ void Aura::_RemoveAura() SendAuraUpdate(true); // update for out of range group members - m_target->UpdateAuraForGroup(slot); + m_target->UpdateAuraForGroup(slot, false); if( IsSealSpell(GetSpellProto()) ) m_target->ModifyAuraState(AURA_STATE_JUDGEMENT,false); |