diff options
author | Elron103 <scarymovie87@gmx.de> | 2012-10-13 00:43:20 +0200 |
---|---|---|
committer | Elron103 <scarymovie87@gmx.de> | 2012-10-13 00:43:20 +0200 |
commit | ae4f5f3deea6960d765f6b770a5f6adf7bac9881 (patch) | |
tree | 56d313df5089c02b25851cfc217938ee8a9ee7db /src | |
parent | db61c290a19c0ebce8a3a50ee7b30769e8bd0e6f (diff) |
Core/Spells: Fix power drain effect for heroic versions of spell 70759 (72015, 72016) - thanks to Shauren
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index ec7359a7ba4..fb39310aabe 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3486,6 +3486,10 @@ void SpellMgr::LoadDbcDataCorrections() case 71085: // Mana Void (periodic aura) spellInfo->DurationIndex = 9; // 30 seconds (missing) break; + case 72015: // Frostbolt Volley (only heroic) + case 72016: // Frostbolt Volley (only heroic) + spellInfo->EffectRadiusIndex[2] = 23; // 40 yards + break; case 70936: // Summon Suppressor (needs target selection script) spellInfo->EffectImplicitTargetA[0] = TARGET_UNIT_TARGET_ANY; spellInfo->EffectImplicitTargetB[0] = 0; |