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
1 changed files with 6 additions and 0 deletions

View File

@ -233,6 +233,12 @@ protected override void CheckForResult(bool userTriggered, double timeOffset)
{
if (Tail.AllJudged)
{
foreach (var tick in tickContainer)
{
if (!tick.Judged)
tick.MissForcefully();
}
ApplyResult(r => r.Type = r.Judgement.MaxResult);
endHold();
}