diff options
author | joschiwald <joschiwald.trinity@gmail.com> | 2014-01-27 19:22:05 +0100 |
---|---|---|
committer | joschiwald <joschiwald.trinity@gmail.com> | 2014-01-27 19:22:05 +0100 |
commit | aa6aaed486689f1ffac41131fd3a123dba7dad65 (patch) | |
tree | 3af392900473590c55968fa4f841e01c9786f1a2 | |
parent | df6f300542fbffda3e097ed5f000df58e73fd4e5 (diff) |
Core/Spells: update SpellFamilyFlags of SPELL_SPECIFIC_SEAL thx @Xanvial
Closes #10561
-rw-r--r-- | src/server/game/Spells/SpellInfo.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp index 1e48de9710f..f4a708e3a0f 100644 --- a/src/server/game/Spells/SpellInfo.cpp +++ b/src/server/game/Spells/SpellInfo.cpp @@ -2163,8 +2163,7 @@ SpellSpecificType SpellInfo::GetSpellSpecific() const case SPELLFAMILY_PALADIN: { // Collection of all the seal family flags. No other paladin spell has any of those. - if (SpellFamilyFlags[1] & 0x26000C00 - || SpellFamilyFlags[0] & 0x0A000000) + if (SpellFamilyFlags[1] & 0xA2000800) return SPELL_SPECIFIC_SEAL; if (SpellFamilyFlags[0] & 0x00002190) |