diff options
author | gerripeach <phillip.wow@gmx.de> | 2013-10-20 12:30:22 +0200 |
---|---|---|
committer | gerripeach <phillip.wow@gmx.de> | 2013-10-20 12:30:22 +0200 |
commit | cb89a42946e765d0b39a57536fe4eff083189faa (patch) | |
tree | 327714e383f9201141f624b3b0c524c0d44a4901 /src | |
parent | 6534df846426197355eebd8d6715c13031613b2f (diff) |
Core/Spell: Earthbind totem should not have DR (Diminishing Returns)
closes: #7037
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index ff89cc61f6f..52ffb2ff525 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -191,6 +191,13 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellInfo const* spellproto, return DIMINISHING_FEAR; break; } + case SPELLFAMILY_SHAMAN: + { + // Storm, Earth and Fire - Earthgrab + if (spellproto->SpellFamilyFlags[2] & 0x4000) + return DIMINISHING_NONE; + break; + } case SPELLFAMILY_DEATHKNIGHT: { // Hungering Cold (no flags) |