Skip to content

Commit

Permalink
post damage after kill fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shalzuth committed Jul 27, 2022
1 parent 5c6407e commit 5721de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LostArkLogger/Parser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ void ProcessPacket(List<Byte> 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)
Expand Down

0 comments on commit 5721de0

Please sign in to comment.