From a9fa007f83f99ccf38bc60bb1a75f671db092781 Mon Sep 17 00:00:00 2001 From: Shauren Date: Mon, 12 Apr 2021 12:24:52 +0200 Subject: Core/Auras: FIxed paladin aura stacking Closes #26125 --- src/server/game/Spells/SpellInfo.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3