Skip to content

Commit

Permalink
Fucking lol
Browse files Browse the repository at this point in the history
  • Loading branch information
awgil committed Apr 6, 2024
1 parent a2da0ed commit bbda69f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BossMod/Replay/ReplayParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ private void EventCast(object? sender, (Actor actor, ActorCastEvent cast) args)

private void EventConfirm(object? sender, (Actor Source, uint Seq, int TargetIndex) args)
{
var a = _res.Actions.Find(a => a.GlobalSequence == args.Seq);
var a = _res.Actions.FindLast(a => a.GlobalSequence == args.Seq);
if (a == null)
{
Service.Log($"Skipping confirmation #{args.Seq}/{args.TargetIndex} for {args.Source.InstanceID:X} for missing action");
Expand Down

0 comments on commit bbda69f

Please sign in to comment.