diff options
Diffstat (limited to 'src/game/SpellEffects.cpp')
-rw-r--r-- | src/game/SpellEffects.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 22291ff78fd..b9ef4c2bf6b 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -402,6 +402,13 @@ void Spell::SpellDamageSchoolDmg(uint32 effect_idx) damage = (distance > radius) ? 0 : int32(m_spellInfo->EffectBasePoints[0]*((radius - distance)/radius)); break; } + // TODO: add spell specific target requirement hook for spells + // Shadowbolts only affects targets with Shadow Mark (Gothik) + case 27831: + case 55638: + if(!unitTarget->HasAura(27825)) + return; + break; // Cataclysmic Bolt case 38441: { |