diff options
author | click <none@none> | 2010-11-14 18:51:14 +0100 |
---|---|---|
committer | click <none@none> | 2010-11-14 18:51:14 +0100 |
commit | 0e5bb0d172e9664f9c18f16b3e5dd812af47b73c (patch) | |
tree | ae203b22c228443e030b36f9c000f0373c7c5dbb /src | |
parent | 1ec41c754b9eb6d9a2e6fff8438e9f2ae8ee61f8 (diff) |
Core/Spells: Fix druids "Natural Shapeshifter" DurationIndex (fix by PrinceCreed)
Closes issue 2142.
--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 30f88d59072..1fa668bd18d 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3782,6 +3782,11 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->Targets |= TARGET_FLAG_UNIT_CASTER; count++; break; + case 16834: // Natural shapeshifter + case 16835: + spellInfo->DurationIndex = 21; + count++; + break; case 51735: // Ebon Plague case 51734: case 51726: |