Fix combos ending with JuiceStreams never leaving the catcher's plate

Closes #2634.
This commit is contained in:
Dean Herbert 2018-06-14 16:39:31 +09:00
parent af4d4b529f
commit c41a50bf24
1 changed files with 3 additions and 0 deletions

View File

@ -124,6 +124,9 @@ private void createTicks()
X = X + Curve.PositionAt(reversed ? 0 : 1).X / CatchPlayfield.BASE_WIDTH
});
}
if (NestedHitObjects.LastOrDefault() is IHasComboInformation lastNested)
lastNested.LastInCombo = LastInCombo;
}
public double EndTime => StartTime + this.SpanCount() * Curve.Distance / Velocity;