Core/Auras: FIxed paladin aura stacking

Port From (https://github.com/TrinityCore/TrinityCore/commit/a9fa007f83f99ccf38bc60bb1a75f671db092781)
This commit is contained in:
hondacrx
2021-04-14 10:16:48 -04:00
parent 143777cf5c
commit 38bf85a083
+10 -2
View File
@@ -1578,8 +1578,16 @@ namespace Game.Spells
_spellSpecific = SpellSpecificType.Judgement;
// only paladin auras have this (for palaldin class family)
if (SpellFamilyFlags[2].HasAnyFlag(0x00000020u))
_spellSpecific = SpellSpecificType.Aura;
switch (Id)
{
case 465: // Devotion Aura
case 32223: // Crusader Aura
case 183435: // Retribution Aura
case 317920: // Concentration Aura
_spellSpecific = SpellSpecificType.Aura;
default:
break;
}
break;
}