mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
fix oversight
This commit is contained in:
parent
2c0dd1815c
commit
4baadfdd16
@ -63,7 +63,7 @@ namespace osu.Game.Rulesets.Osu.Objects
|
||||
/// <summary>
|
||||
/// The length of one repeat if any repeats are present, otherwise it equals the <see cref="Duration"/>.
|
||||
/// </summary>
|
||||
public double SpanDuration => RepeatCount > 1 ? Distance / Velocity : Duration;
|
||||
public double SpanDuration => RepeatCount > 0 ? Distance / Velocity : Duration;
|
||||
|
||||
private int stackHeight;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user