aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorQAston <none@none>2009-04-08 00:21:11 +0200
committerQAston <none@none>2009-04-08 00:21:11 +0200
commitf646e0cc24b9681227d651fe0e64548e5a477b5e (patch)
tree7ff44fde814a70f804a614909388c4cfc8203bce /src
parentebc7176678debd7597acc1b14682052e3f52ac56 (diff)
*Fix a crash with cloak of shadows.
--HG-- branch : trunk
Diffstat (limited to 'src')
-rw-r--r--src/game/SpellEffects.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp
index eb3ff67c243..54bee661408 100644
--- a/src/game/SpellEffects.cpp
+++ b/src/game/SpellEffects.cpp
@@ -2059,7 +2059,7 @@ void Spell::EffectTriggerSpell(uint32 i)
// ignore positive and passive auras
&& !iter->second->IsPositive() && !iter->second->IsPassive())
{
- m_caster->RemoveAura(iter->second);
+ m_caster->RemoveAura(iter);
}
else
iter++;