Miss all ticks when hold note is hit

This commit is contained in:
smoogipoo 2021-03-31 12:21:14 +09:00
parent f78d628878
commit 43e48406ca

View File

@ -233,6 +233,12 @@ namespace osu.Game.Rulesets.Mania.Objects.Drawables
{
if (Tail.AllJudged)
{
foreach (var tick in tickContainer)
{
if (!tick.Judged)
tick.MissForcefully();
}
ApplyResult(r => r.Type = r.Judgement.MaxResult);
endHold();
}