diff options
author | QAston <none@none> | 2008-12-27 22:24:29 +0100 |
---|---|---|
committer | QAston <none@none> | 2008-12-27 22:24:29 +0100 |
commit | 231cb0f5a7707017cd37628c389c32e42f24f1fe (patch) | |
tree | efde6463a533e59ab23d0e21b130abddf0f297b6 /src/game/SpellAuras.cpp | |
parent | 46bc9c343e04bf42ce7ae6073f862f30cdd7c02d (diff) |
*Remove aura slot from update fields at aura remove.
--HG--
branch : trunk
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 36e62831f61..d22266f2e15 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -886,7 +886,7 @@ void Aura::_AddAura() UpdateAuraCharges(); // update for out of range group members - m_target->UpdateAuraForGroup(slot); + m_target->UpdateAuraForGroup(slot, true); } } else // use found slot @@ -973,7 +973,7 @@ void Aura::_RemoveAura() SetAuraApplication(slot, 0); // 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); |