diff options
author | megamage <none@none> | 2009-05-26 22:13:36 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-05-26 22:13:36 -0500 |
commit | 7ac4fb46c417ecbc68cf4844c6078ed88015bc90 (patch) | |
tree | c87ca94e84da4cd49c58fd45ddaf739224fb3939 /src | |
parent | 0328a3c2120fa32aab6cf95d7139995d9a21dbd5 (diff) |
*Fix DK quest 12641
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellMgr.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 165b274a7a3..8b01639d1be 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -3422,6 +3422,12 @@ void SpellMgr::LoadSpellCustomAttr() case 28200: // Ascendance (Talisman of Ascendance trinket) spellInfo->procCharges=6; break; + case 51852: // The Eye of Acherus (no spawn in phase 2 in db) + spellInfo->EffectMiscValue[0] |= 1; + break; + case 51904: // Summon Ghouls On Scarlet Crusade (core does not know the triggered spell is summon spell) + spellInfo->EffectImplicitTargetA[0] = TARGET_UNIT_CASTER; + break; default: break; } |