diff options
| author | Shauren <none@none> | 2010-12-06 22:54:19 +0100 |
|---|---|---|
| committer | Shauren <none@none> | 2010-12-06 22:54:19 +0100 |
| commit | 703835ee94f15131eec84e25e45059fb87ab1ba2 (patch) | |
| tree | 26d13c62a6c562796ce0a95e99f6602cfd339911 /src/server/game/Spells/SpellMgr.cpp | |
| parent | 20cc4ace5d4ab8a7438fc5db470c43cd9b1f4c66 (diff) | |
Core/Quests: Fixed Unholy Infusion (24749), Blood Infusion (24756) and added partial support for Frost Infusion (24757)
--HG--
branch : trunk
Diffstat (limited to 'src/server/game/Spells/SpellMgr.cpp')
| -rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 8a3074742f0..6bde370cd70 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3888,11 +3888,6 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->EffectImplicitTargetA[0] = TARGET_DST_DB; count++; break; - // Deathbringer Saurfang achievement (must be cast on players, cannot do that with ENTRY target) - case 72928: - spellInfo->EffectImplicitTargetB[0] = TARGET_UNIT_AREA_ENEMY_SRC; - count++; - break; case 63675: // Improved Devouring Plague spellInfo->AttributesEx3 |= SPELL_ATTR_EX3_NO_DONE_BONUS; count++; @@ -3954,6 +3949,12 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->EffectImplicitTargetB[0] = TARGET_UNIT_TARGET_ENEMY; count++; break; + case 71518: // Unholy Infusion Quest Credit + case 72934: // Blood Infusion Quest Credit + case 72289: // Frost Infusion Quest Credit + spellInfo->EffectRadiusIndex[0] = 28; // another missing radius + count++; + break; case 71708: // Empowered Flare case 72785: // Empowered Flare case 72786: // Empowered Flare |
