diff --git a/Source/Game/Entities/Unit/Unit.Combat.cs b/Source/Game/Entities/Unit/Unit.Combat.cs index 7177f96cb..5c57ccc54 100644 --- a/Source/Game/Entities/Unit/Unit.Combat.cs +++ b/Source/Game/Entities/Unit/Unit.Combat.cs @@ -1548,8 +1548,12 @@ namespace Game.Entities internal void SendCombatLogMessage(CombatLogServerPacket combatLog) { - CombatLogSender combatLogCustomizer = new(combatLog); - var notifier = new MessageDistDeliverer(this, combatLogCustomizer, GetVisibilityRange()); + CombatLogSender combatLogSender = new(combatLog); + + if (IsPlayer()) + combatLogSender.Invoke(ToPlayer()); + + var notifier = new MessageDistDeliverer(this, combatLogSender, GetVisibilityRange()); Cell.VisitWorldObjects(this, notifier, GetVisibilityRange()); }