diff options
| author | tobmaps <spambot42@yandex.ru> | 2011-07-16 01:24:15 +0700 |
|---|---|---|
| committer | tobmaps <spambot42@yandex.ru> | 2011-07-16 01:24:15 +0700 |
| commit | 66b217991c4dc1020847d741fdc35896e3c39b49 (patch) | |
| tree | 1dba8a65d97b1f7c9a286bb0fe06439a45241309 /src/server/game/Spells/SpellMgr.cpp | |
| parent | 8a112a5c1043f01bb60584f85619b6e8678f1c82 (diff) | |
Core/Spells: Fix Unstable Affliction
Closes #94
Closes #1244
Closes #1528
Diffstat (limited to 'src/server/game/Spells/SpellMgr.cpp')
| -rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 69f76c51777..47f1e3c803d 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -3942,6 +3942,11 @@ void SpellMgr::LoadSpellCustomAttr() spellInfo->AttributesEx3 |= SPELL_ATTR3_CAN_PROC_WITH_TRIGGERED; ++count; break; + case 31117: // Unstable Affliction + // this attribute currently makes spell to ignore resilience and absorbs + spellInfo->AttributesEx4 &= ~SPELL_ATTR4_FIXED_DAMAGE; + ++count; + break; case 16007: // Draco-Incarcinatrix 900 // was 46, but effect is aura effect spellInfo->EffectImplicitTargetA[0] = TARGET_UNIT_NEARBY_ENTRY; |
