aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/server/game/Spells/SpellInfo.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp
index c06a834a1d7..de90ff466e5 100644
--- a/src/server/game/Spells/SpellInfo.cpp
+++ b/src/server/game/Spells/SpellInfo.cpp
@@ -2655,8 +2655,16 @@ void SpellInfo::_LoadSpellSpecific()
return SPELL_SPECIFIC_JUDGEMENT;
// only paladin auras have this (for palaldin class family)
- if (SpellFamilyFlags[2] & 0x00000020)
- return SPELL_SPECIFIC_AURA;
+ switch (Id)
+ {
+ case 465: // Devotion Aura
+ case 32223: // Crusader Aura
+ case 183435: // Retribution Aura
+ case 317920: // Concentration Aura
+ return SPELL_SPECIFIC_AURA;
+ default:
+ break;
+ }
break;
}