diff options
author | Nyeriah <sarah.trysan@live.com> | 2014-09-01 23:44:33 -0300 |
---|---|---|
committer | Nyeriah <sarah.trysan@live.com> | 2014-09-01 23:44:33 -0300 |
commit | 5622e2a63e57458bd8cd34ddf0233e5372b282e3 (patch) | |
tree | bdfa84133bef8026a1e13e20a3fccd09c40e52c8 | |
parent | 5ca5a75d21ba6f79c9c83d1e1b6a84da88f65dc0 (diff) |
Core/Spells: Screams of the Dead's (51750) duration shouldn't be affected by diminishing returns
-rw-r--r-- | src/server/game/Spells/SpellMgr.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 8e0c8c8bd01..461e56b8f78 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -85,6 +85,9 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellInfo const* spellproto, // Black Plague else if (spellproto->Id == 64155) return DIMINISHING_NONE; + // Screams of the Dead (King Ymiron) + else if (spellproto->Id == 51750) + return DIMINISHING_NONE; break; } // Event spells |