diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellMgr.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 6b036445394..e42e5dc4488 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -2346,7 +2346,7 @@ void SpellMgr::LoadSpellCustomAttr() case 45027: // Revitalize case 45976: // Muru Portal Channel case 39365: // Thundering Storm - case 41071: // Raise Dead + case 41071: // Raise Dead (HACK) spellInfo->MaxAffectedTargets = 1; break; case 41376: // Spite @@ -2387,6 +2387,15 @@ void SpellMgr::LoadSpellCustomAttr() default: break; } + + switch(spellInfo->SpellFamilyName) + { + case SPELLFAMILY_DRUID: + //starfall + if(spellInfo->SpellFamilyFlags[2] & 0x100) + spellInfo->MaxAffectedTargets = 2; + break; + } } } |