diff options
author | megamage <none@none> | 2009-05-27 16:11:40 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-27 16:11:40 -0500 |
commit | 75cf5b781cba41fd4a53ad400b06d03a1e1c032d (patch) | |
tree | 18608c7f3f0d6865d33bc6758aee6007bba1065a | |
parent | dc1c900048966279e87db0e3623bf2a6b46df69e (diff) |
*Do not trigger living bomb when target is dead. By Them
--HG--
branch : trunk
-rw-r--r-- | src/game/SpellAuras.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/SpellAuras.cpp b/src/game/SpellAuras.cpp index cc1745e94dc..217074b743f 100644 --- a/src/game/SpellAuras.cpp +++ b/src/game/SpellAuras.cpp @@ -2553,7 +2553,7 @@ void AuraEffect::HandleAuraDummy(bool apply, bool Real, bool changeAmount) // Living Bomb if(m_spellProto->SpellFamilyFlags[1] & 0x20000) { - if(caster && (GetParentAura()->GetRemoveMode() == AURA_REMOVE_BY_ENEMY_SPELL || GetParentAura()->GetRemoveMode() == AURA_REMOVE_BY_DEATH || GetParentAura()->GetRemoveMode() == AURA_REMOVE_BY_EXPIRE)) + if(caster && (GetParentAura()->GetRemoveMode() == AURA_REMOVE_BY_ENEMY_SPELL || GetParentAura()->GetRemoveMode() == AURA_REMOVE_BY_EXPIRE)) caster->CastSpell(m_target, GetAmount(), true); return; } |