diff options
author | silinoron <none@none> | 2010-12-04 10:59:45 -0800 |
---|---|---|
committer | silinoron <none@none> | 2010-12-04 10:59:45 -0800 |
commit | 3201338eace39973301d5e398772cef49eb6f85b (patch) | |
tree | 75f8db94e608ed03db35a7493dc53f99b97e3352 /src | |
parent | 1b5ff6231432273cf39a0fb3adf8dcfa7e2c5c04 (diff) |
Core/Auras: Allow spell 64381 to stack four times.
Patch by Lopin.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index fe2d1dbe28c..6c1170463dd 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3867,6 +3867,11 @@ void SpellMgr::LoadSpellCustomAttr() mSpellCustomAttr[i] |= SPELL_ATTR_CU_IGNORE_ARMOR; count++; break; + // Strength of the Pack + case 64381: + spellInfo->StackAmount = 4; + count++; + break; // THESE SPELLS ARE WORKING CORRECTLY EVEN WITHOUT THIS HACK // THE ONLY REASON ITS HERE IS THAT CURRENT GRID SYSTEM // DOES NOT ALLOW FAR OBJECT SELECTION (dist > 333) |