From 800bf056ee23c758662a641f582bdc69b02b7ca1 Mon Sep 17 00:00:00 2001 From: Hondacrx Date: Sun, 25 Aug 2024 23:56:29 -0400 Subject: [PATCH] Core/Auras: Apply banished aura state with auras using banish mechanic Port From (https://github.com/TrinityCore/TrinityCore/commit/3974648ae02970a62841104c7678db89cfbeea48) --- Source/Game/Spells/SpellInfo.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Source/Game/Spells/SpellInfo.cs b/Source/Game/Spells/SpellInfo.cs index 79b4ad146..3eefadecd 100644 --- a/Source/Game/Spells/SpellInfo.cs +++ b/Source/Game/Spells/SpellInfo.cs @@ -1465,6 +1465,9 @@ namespace Game.Spells default: break; } + + if (Mechanic == Mechanics.Banish) + _auraState = AuraStateType.Banished; } public SpellSpecificType GetSpellSpecific()