Skip to content

Commit

Permalink
Fix minor twin generation bug
Browse files Browse the repository at this point in the history
  • Loading branch information
LumpBloom7 committed Nov 7, 2024
1 parent 842a858 commit 940a63e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ protected override IEnumerable<SentakkiHitObject> ConvertHitObject(HitObject ori
fanStartTime = slide.StartTime + slide.Duration * slidePath.FanStartProgress;
}

if (allClaps && fanStartTime != double.MaxValue)
if (allClaps && fanStartTime == double.MaxValue)
{
if (tryGetLaneForTwinNote(original.StartTime, out int twinLane))
yield return convertSlider(original, twinLane, false, false);
Expand Down

0 comments on commit 940a63e

Please sign in to comment.