diff options
author | Lopin <Lopin@TwinStar.cz> | 2011-05-08 17:13:38 +0200 |
---|---|---|
committer | Lopin <Lopin@TwinStar.cz> | 2011-05-08 17:13:38 +0200 |
commit | 55ccf1a52c1f05e958099acedbd65b9903c1d567 (patch) | |
tree | 69da2564ec8693747061b084b1c2f59e2fcc13f8 /src | |
parent | 27c419a8fe8c234ccd2a8d078658e86c36d0a8fd (diff) |
Core/Spells: Howl Of Terror should affect max of 5 targets
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 503fa87f6c5..b9127319149 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3636,10 +3636,6 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->excludeCasterAuraSpell = 57723; // Exhaustion ++count; break; - case 61588: // Blazing Harpoon - spellInfo->MaxAffectedTargets = 1; - ++count; - break; case 2825: // Bloodlust spellInfo->excludeCasterAuraSpell = 57724; // Sated ++count; @@ -3717,6 +3713,7 @@ void SpellMgr::LoadSpellCustomAttr() case 45761: // Shoot case 42611: // Shoot case 62374: // Pursued + case 61588: // Blazing Harpoon spellInfo->MaxAffectedTargets = 1; ++count; break; @@ -3755,6 +3752,7 @@ void SpellMgr::LoadSpellCustomAttr() case 45641: // Fire Bloom case 55665: // Life Drain - Sapphiron (H) case 28796: // Poison Bolt Volly - Faerlina + case 5484: // Howl Of Terror (Warlock) spellInfo->MaxAffectedTargets = 5; ++count; break; |