diff options
-rw-r--r-- | src/game/SpellAuras.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index eddbb230b16..901adfd2443 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -558,9 +558,7 @@ void Aura::UpdateOwner(uint32 diff, WorldObject * owner) Player * modOwner = NULL; if (caster) { - modOwner = caster->GetSpellModOwner(); - modSpell = modOwner->FindCurrentSpellBySpellId(GetId()); - if (modOwner && modSpell) + if ((modOwner = caster->GetSpellModOwner()) && (modSpell = modOwner->FindCurrentSpellBySpellId(GetId()))) modOwner->SetSpellModTakingSpell(modSpell, true); } |