diff options
Diffstat (limited to 'src/game/SpellEffects.cpp')
-rw-r--r-- | src/game/SpellEffects.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 09807fe6cd0..3d1cdbf595b 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -471,7 +471,7 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) case SPELLFAMILY_PRIEST: { // Shadow Word: Death - deals damage equal to damage done to caster - if (m_spellInfo->SpellFamilyFlags[1] & 0x2) + if ((m_spellInfo->SpellFamilyFlags[1] & 0x2 )&& m_damage < unitTarget->GetHealth()) m_caster->CastCustomSpell(m_caster, 32409, &damage, 0, 0, true); break; } @@ -1489,7 +1489,7 @@ void Spell::EffectDummy(uint32 i) // Penance if (m_spellInfo->SpellFamilyFlags[1] & 0x00800000) { - if (!unitTarget) + if (!unitTarget || !unitTarget->isAlive()) return; int hurt = 0; |