From 5721de0d8e5e865d02e1cc26def59a314309d093 Mon Sep 17 00:00:00 2001 From: shalzuth Date: Tue, 26 Jul 2022 21:36:21 -0700 Subject: [PATCH] post damage after kill fix --- LostArkLogger/Parser.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LostArkLogger/Parser.cs b/LostArkLogger/Parser.cs index 7675979e..760f692c 100644 --- a/LostArkLogger/Parser.cs +++ b/LostArkLogger/Parser.cs @@ -345,8 +345,8 @@ void ProcessPacket(List data) } Task.Run(() => { - Task.Delay(500); // wait 500ms to capture any final damage packets currentEncounter.End = DateTime.Now; + Task.Delay(1500); // wait 1500ms to capture any final damage packets currentEncounter = new Encounter(); currentEncounter.Entities = Encounters.Last().Entities; // preserve entities if (WasWipe || Encounters.Last().AfterWipe)