diff options
author | QAston <none@none> | 2009-07-19 14:56:18 +0200 |
---|---|---|
committer | QAston <none@none> | 2009-07-19 14:56:18 +0200 |
commit | b16ffa91b166f7964d22ccfc31cc97eeac049969 (patch) | |
tree | 3efa54efe62f693f81f74ccf23e9034058d62936 /src | |
parent | 94992adb64544ab6a813f3e244a2e14cf80823f5 (diff) |
*Correct diminishing returns for charge and linked spell for Stoneform.
--HG--
branch : trunk
Diffstat (limited to 'src')
-rw-r--r-- | src/game/SpellMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index 75482eb44a8..eafda06077c 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -2913,8 +2913,8 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellEntry const* spellproto // Intimidating Shout else if (spellproto->SpellFamilyFlags[0] & 0x40000) return DIMINISHING_FEAR_BLIND; - // Charge - else if (spellproto->SpellFamilyFlags[0] & 0x1) + // Charge Stun + else if (spellproto->SpellFamilyFlags[0] & 0x01000000) return DIMINISHING_NONE; break; } |