From 076441a76a418c79c7190b52a47021ebbfe815ff Mon Sep 17 00:00:00 2001 From: hondacrx Date: Tue, 21 Sep 2021 18:55:25 -0400 Subject: [PATCH] Core/Spells: always initialize hitinfo aura Port From (https://github.com/TrinityCore/TrinityCore/commit/a8226a1d6779724541c09265898a646c2b35d5d7) --- Source/Game/Spells/Spell.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Source/Game/Spells/Spell.cs b/Source/Game/Spells/Spell.cs index a3344f3a0..e0f856a8a 100644 --- a/Source/Game/Spells/Spell.cs +++ b/Source/Game/Spells/Spell.cs @@ -2084,10 +2084,9 @@ namespace Game.Spells } } else - { - hitInfo.HitAura = spellAura; spellAura.AddStaticApplication(unit, aura_effmask); - } + + hitInfo.HitAura = spellAura; } }