diff options
author | Spp <none@none> | 2010-04-30 09:47:06 +0200 |
---|---|---|
committer | Spp <none@none> | 2010-04-30 09:47:06 +0200 |
commit | 19bed200369a49e97f8f2496f27e6be826ec8b66 (patch) | |
tree | 4d3ee65e38217c6683026e57fa001baa33b2a0fa /src/game/SpellMgr.cpp | |
parent | 7b6f52b2a02c35d6004d2edd4bce89db5e5495a4 (diff) |
Fix Death Pact, by Havenard
Closes issue 1658
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
-rw-r--r-- | src/game/SpellMgr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index b52811ca220..127fe2152f8 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -3802,6 +3802,10 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->MaxAffectedTargets = 1; count++; break; + case 48743: // Death Pact + spellInfo->AttributesEx &= ~SPELL_ATTR_EX_CANT_TARGET_SELF; + count++; + break; // target allys instead of enemies, target A is src_caster, spells with effect like that have ally target // this is the only known exception, probably just wrong data case 29214: // Wrath of the Plaguebringer |