diff options
Diffstat (limited to 'src/game/SpellEffects.cpp')
| -rw-r--r-- | src/game/SpellEffects.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game/SpellEffects.cpp b/src/game/SpellEffects.cpp index 3dd40577996..809c4cab557 100644 --- a/src/game/SpellEffects.cpp +++ b/src/game/SpellEffects.cpp @@ -929,7 +929,8 @@ void Spell::EffectDummy(uint32 i) return; } case 29858: // Soulshatter - if (unitTarget && unitTarget->GetTypeId() == TYPEID_UNIT && unitTarget->IsHostileTo(m_caster)) + if (unitTarget && unitTarget->CanHaveThreatList() + && unitTarget->getThreatManager().getThreat(m_caster) > 0.0f) m_caster->CastSpell(unitTarget,32835,true); return; case 30458: // Nigh Invulnerability |
