From d8f4c96346046e6e88c15d2c696baee0dbd8ba75 Mon Sep 17 00:00:00 2001 From: Hondacrx Date: Mon, 16 Jun 2025 16:45:24 -0400 Subject: [PATCH] Core/PacketiO: Rename Unk field in SMSG_SPELL_ABSORB_LOG Port From (https://github.com/TrinityCore/TrinityCore/commit/64e5f9cce90a751cb3608178982aeb7a632bd197) --- Source/Game/Networking/Packets/CombatLogPackets.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Game/Networking/Packets/CombatLogPackets.cs b/Source/Game/Networking/Packets/CombatLogPackets.cs index 661c73f45..4ebfea257 100644 --- a/Source/Game/Networking/Packets/CombatLogPackets.cs +++ b/Source/Game/Networking/Packets/CombatLogPackets.cs @@ -610,7 +610,7 @@ namespace Game.Networking.Packets foreach (SpellSupportInfo supportInfo in Supporters) supportInfo.Write(_worldPacket); - _worldPacket.WriteBit(Unk); + _worldPacket.WriteBit(Crit); WriteLogDataBit(); FlushBits(); @@ -624,7 +624,7 @@ namespace Game.Networking.Packets public uint AbsorbSpellID; public int Absorbed; public uint OriginalDamage; - public bool Unk; + public bool Crit; public List Supporters = new(); }