Skip to content

Commit

Permalink
Merge pull request #50 from swoolcock/fix-strict-sawblades
Browse files Browse the repository at this point in the history
Fix sawblades being far too strict on a late jump/duck
  • Loading branch information
swoolcock authored Aug 19, 2020
2 parents 01665ac + 6455951 commit b7d4600
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
if (userTriggered || timeOffset < 0 || AllJudged)
return;

if (HitObject.HitWindows.CanBeHit(timeOffset))
if (HitObject.HitWindows.ResultFor(timeOffset) != HitResult.None)
return;

if (playfield.PlayerSprite.CollidesWith(HitObject))
Expand Down

0 comments on commit b7d4600

Please sign in to comment.