From daa72123a249df941ee229838f04ce7433fdf1ce Mon Sep 17 00:00:00 2001 From: hondacrx Date: Wed, 3 Nov 2021 11:53:05 -0400 Subject: [PATCH] Core/PacketIO: Fixed SMSG_SPELLNONMELEEDAMAGELOG structure Port From (https://github.com/TrinityCore/TrinityCore/commit/4e294f54e400816905e9748b0cd3186d2e6d8642) --- Source/Game/Spells/Auras/AuraEffect.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Game/Spells/Auras/AuraEffect.cs b/Source/Game/Spells/Auras/AuraEffect.cs index b3f5c1bef..ee86998d4 100644 --- a/Source/Game/Spells/Auras/AuraEffect.cs +++ b/Source/Game/Spells/Auras/AuraEffect.cs @@ -5363,6 +5363,7 @@ namespace Game.Spells SpellInfo spellProto = GetSpellInfo(); // maybe has to be sent different to client, but not by SMSG_PERIODICAURALOG SpellNonMeleeDamage damageInfo = new(caster, target, spellProto, GetBase().GetSpellVisual(), spellProto.SchoolMask, GetBase().GetCastId()); + damageInfo.periodicLog = true; // no SpellDamageBonus for burn mana caster.CalculateSpellDamageTaken(damageInfo, (int)(gain * dmgMultiplier), spellProto);