diff options
author | elecyb <elecyb@hotmail.com> | 2012-02-08 21:35:00 -0300 |
---|---|---|
committer | elecyb <elecyb@hotmail.com> | 2012-02-08 21:35:00 -0300 |
commit | d585c688140f67d5e8c0a800a202c293fb21b3cf (patch) | |
tree | 8a67a870488c02839681e919be7d84a0d6bda9d5 /src | |
parent | 1730cee9e139791f3217f2d76ea92d2e7383ba95 (diff) |
Core/Spells: Removed incorrect diminishing group check for Improved Hamstring.
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 99961664aa8..ff4eaae42f2 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -104,9 +104,6 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellInfo const* spellproto, // Hamstring - limit duration to 10s in PvP if (spellproto->SpellFamilyFlags[0] & 0x2) return DIMINISHING_LIMITONLY; - // Improved Hamstring - else if (spellproto->AttributesEx3 & 0x80000 && spellproto->SpellIconID == 23) - return DIMINISHING_ROOT; // Charge Stun (own diminishing) else if (spellproto->SpellFamilyFlags[0] & 0x01000000) return DIMINISHING_CHARGE; |