mirror of
https://github.com/ppy/osu
synced 2024-12-27 01:12:45 +00:00
Merge pull request #10186 from smoogipoo/allow-one-object-edge-case
Allow one hitobject in taiko conversion edge case
This commit is contained in:
commit
9e02b63130
@ -89,9 +89,6 @@ namespace osu.Game.Rulesets.Taiko.Beatmaps
|
||||
{
|
||||
List<IList<HitSampleInfo>> allSamples = obj is IHasPathWithRepeats curveData ? curveData.NodeSamples : new List<IList<HitSampleInfo>>(new[] { samples });
|
||||
|
||||
if (Precision.AlmostEquals(0, tickSpacing))
|
||||
yield break;
|
||||
|
||||
int i = 0;
|
||||
|
||||
for (double j = obj.StartTime; j <= obj.StartTime + taikoDuration + tickSpacing / 8; j += tickSpacing)
|
||||
@ -109,6 +106,9 @@ namespace osu.Game.Rulesets.Taiko.Beatmaps
|
||||
};
|
||||
|
||||
i = (i + 1) % allSamples.Count;
|
||||
|
||||
if (Precision.AlmostEquals(0, tickSpacing))
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user