diff options
author | tobmaps <spambot42@yandex.ru> | 2011-05-20 19:28:14 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-05-20 19:28:14 +0700 |
commit | db5ff45e817e3251c5878bb75195f6f1d1efd17f (patch) | |
tree | 9013d034f9786692a0be728c0172de215ea14ce2 | |
parent | ac4ed1efdf2d800ab2ea605fac982c9436cfba1b (diff) |
Core/Spells: Fix exploit with Improved Shadowform (Rank 1)
-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 260d1e10230..8d98ae1a5a9 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3860,6 +3860,11 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->Stances = 1 << (FORM_TREE - 1); ++count; break; + case 47569: // Improved Shadowform (Rank 1) + // with this spell atrribute aura can be stacked several times + spellInfo->Attributes &= ~SPELL_ATTR0_NOT_SHAPESHIFT; + ++count; + break; case 30421: // Nether Portal - Perseverence spellInfo->EffectBasePoints[2] += 30000; ++count; |