mirror of
https://github.com/ppy/osu
synced 2024-12-14 19:06:07 +00: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)
|
||||
{
|
||||
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