diff options
author | tobmaps <spambot42@yandex.ru> | 2011-05-31 23:10:58 +0700 |
---|---|---|
committer | tobmaps <spambot42@yandex.ru> | 2011-05-31 23:10:58 +0700 |
commit | 223d3266d82167de692f8bba45dc6c8bbe4bb5fc (patch) | |
tree | 14a61df5f3fdda050b94c88a58b4fe3998c339e9 /src | |
parent | 53db8f4fb6a0b005552128d43d57b99437af7cb6 (diff) |
Core/Spells: Seals of Pure should affect Seal of Righteousness
Closes #1762
Diffstat (limited to 'src')
-rwxr-xr-x | src/server/game/Spells/SpellMgr.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 13a98701d0d..0718d5e14fc 100755 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -4174,6 +4174,14 @@ void SpellMgr::LoadSpellCustomAttr() break; ++count; break; + case SPELLFAMILY_PALADIN: + // Seals of the Pure should affect Seal of Righteousness + if (spellInfo->SpellIconID == 25 && spellInfo->Attributes & SPELL_ATTR0_PASSIVE) + spellInfo->EffectSpellClassMask[0][1] |= 0x20000000; + else + break; + ++count; + break; case SPELLFAMILY_DEATHKNIGHT: // Icy Touch - extend FamilyFlags (unused value) for Sigil of the Frozen Conscience to use if (spellInfo->SpellIconID == 2721 && spellInfo->SpellFamilyFlags[0] & 0x2) |