Core/Auras: FIxed paladin aura stacking
Port From (https://github.com/TrinityCore/TrinityCore/commit/a9fa007f83f99ccf38bc60bb1a75f671db092781)
This commit is contained in:
@@ -1578,8 +1578,16 @@ namespace Game.Spells
|
|||||||
_spellSpecific = SpellSpecificType.Judgement;
|
_spellSpecific = SpellSpecificType.Judgement;
|
||||||
|
|
||||||
// only paladin auras have this (for palaldin class family)
|
// only paladin auras have this (for palaldin class family)
|
||||||
if (SpellFamilyFlags[2].HasAnyFlag(0x00000020u))
|
switch (Id)
|
||||||
_spellSpecific = SpellSpecificType.Aura;
|
{
|
||||||
|
case 465: // Devotion Aura
|
||||||
|
case 32223: // Crusader Aura
|
||||||
|
case 183435: // Retribution Aura
|
||||||
|
case 317920: // Concentration Aura
|
||||||
|
_spellSpecific = SpellSpecificType.Aura;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user