Skip to content

Commit

Permalink
Don't allow slides with fewer than 3 nodes to get sympathy judgement
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Oct 4, 2020
1 parent de00a61 commit 5b229de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
if (!HitObject.HitWindows.CanBeHit(timeOffset))
{
SlideNodes.Last().ForceJudgement(false);
if (SlideNodes.Count(node => !node.Result.IsHit) <= 2)
if (SlideNodes.Count(node => !node.Result.IsHit) <= 2 && SlideNodes.Count > 2)
ApplyResult(r => r.Type = HitResult.Meh);
else
ApplyResult(r => r.Type = HitResult.Miss);
Expand Down

0 comments on commit 5b229de

Please sign in to comment.