diff options
author | Warpten <vertozor@gmail.com> | 2013-09-19 17:42:36 +0200 |
---|---|---|
committer | Warpten <vertozor@gmail.com> | 2013-09-19 17:42:36 +0200 |
commit | fb997c5f41965eafb080597a71181fcfc57e7678 (patch) | |
tree | 9afbcba2ec625c489bb43a29dd8225f990576aef /src | |
parent | 7f3240677a6ffd57eb3286993d0202c70c4fd6bc (diff) |
Core/Spells: Since patch 4.3.0 Vampiric Touch's backlash effect does not have any diminishing return.
Diffstat (limited to 'src')
-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 0bb66e9710d..8b26244d0a5 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -127,6 +127,9 @@ DiminishingGroup GetDiminishingReturnsGroupForSpell(SpellInfo const* spellproto, // Seduction else if (spellproto->SpellFamilyFlags[1] & 0x10000000) return DIMINISHING_FEAR; + // Sin and Punishment (Priest spell, don't ask) + else if (spellproto->SpellIconID == 1869) + return DIMINISHING_NONE; break; } case SPELLFAMILY_DRUID: |