1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-29 23:51:01 +08:00

Added more smart checking to removing rewound drumroll hits

This commit is contained in:
Tim Oliver
2020-04-25 13:18:02 +08:00
Unverified
parent 477fe72fcf
commit 3cc0b21eae
+4 -1
View File
@@ -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);
}
}
}