Skip to content

Commit

Permalink
Fix double result application in HoldHeads
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Mar 24, 2024
1 parent 1d06b48 commit 4c82d48
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
{
if (Auto && timeOffset > 0)
ApplyResult(HitResult.Perfect);

if (!HitObject.HitWindows.CanBeHit(timeOffset))
else if (!HitObject.HitWindows.CanBeHit(timeOffset))
ApplyResult(Result.Judgement.MinResult);

return;
}

Expand Down

0 comments on commit 4c82d48

Please sign in to comment.