diff options
author | Blaymoira <none@none> | 2009-01-01 20:08:32 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2009-01-01 20:08:32 +0100 |
commit | c797bd3843e246bb85c6d73beeb57939ad1dfecd (patch) | |
tree | 53a64288cb9b9adcade290f728b075f40e86b384 /src | |
parent | 0df85d825c7dcc2d7c59119102cba200d4c479af (diff) |
*Fixed some spells with MaxAffectedTarget but not defined in dbc files
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellMgr.cpp | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 97dfc94326e..19495a4ba25 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -2154,18 +2154,29 @@ void SpellMgr::LoadSpellCustomAttr() break; case 41376: // Spite case 39992: // Needle Spine + case 29576: //Multi-Shot + case 40816: //Saber Lash + case 37790: //Spread Shot spellInfo->MaxAffectedTargets = 3; break; + case 38310: //Multi-Shot + spellInfo->MaxAffectedTargets = 4; + break; case 42005: // Bloodboil + case 38296: //Spitfire Totem + case 37676: //Insidious Whisper spellInfo->MaxAffectedTargets = 5; break; + case 40827: //Sinful Beam + case 40859: //Sinister Beam + case 40860: //Vile Beam + case 40861: //Wicked Beam + spellInfo->MaxAffectedTargets = 10; + break; case 8122: case 8124: case 10888: case 10890: // Psychic Scream case 12494: // Frostbite spellInfo->Attributes |= SPELL_ATTR_BREAKABLE_BY_DAMAGE; break; - //case 5530: // Mace spec (this will not be needed in 303 - // spellInfo->rangeIndex = 13; //inf - // break; default: break; } |