1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-08 06:36:05 +08:00

Fix back-to-front conditional in taiko processor

Would be weird to degrade a score due to *no* misses wouldn't it?
This commit is contained in:
Bartłomiej Dach 2024-01-22 19:57:12 +01:00
parent cb8ec48717
commit 20ed7e13e3
No known key found for this signature in database

View File

@ -43,7 +43,7 @@ namespace osu.Game.Rulesets.Taiko.Scoring
{ {
case ScoreRank.S: case ScoreRank.S:
case ScoreRank.X: case ScoreRank.X:
if (results.GetValueOrDefault(HitResult.Miss) == 0) if (results.GetValueOrDefault(HitResult.Miss) > 0)
rank = ScoreRank.A; rank = ScoreRank.A;
break; break;
} }