mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 17:23:22 +08:00
Added more smart checking to removing rewound drumroll hits
This commit is contained in:
parent
477fe72fcf
commit
3cc0b21eae
@ -295,7 +295,10 @@ namespace osu.Game.Rulesets.Taiko.UI
|
|||||||
if (Time.Elapsed < 0)
|
if (Time.Elapsed < 0)
|
||||||
{
|
{
|
||||||
foreach (var o in drumRollHitContainer.Objects)
|
foreach (var o in drumRollHitContainer.Objects)
|
||||||
drumRollHitContainer.Remove(o);
|
{
|
||||||
|
if (o.HitObject.StartTime >= Time.Current)
|
||||||
|
drumRollHitContainer.Remove(o);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user