Replace assignment references to HitResult.Miss with Judgement.MinResult

This commit is contained in:
Bartłomiej Dach
2020-10-02 22:58:10 +02:00
parent 2b1ef16f89
commit 1f0620ffd4
12 changed files with 10 additions and 17 deletions

View File

@ -132,7 +132,7 @@ namespace osu.Game.Rulesets.Taiko.Objects.Drawables
ApplyResult(r => r.Type = countHit >= HitObject.RequiredGreatHits ? HitResult.Great : HitResult.Ok);
}
else
ApplyResult(r => r.Type = HitResult.Miss);
ApplyResult(r => r.Type = r.Judgement.MinResult);
}
protected override void UpdateStateTransforms(ArmedState state)