mirror of https://github.com/ppy/osu
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:
parent
cb8ec48717
commit
20ed7e13e3
|
@ -43,7 +43,7 @@ public override ScoreRank RankFromScore(double accuracy, IReadOnlyDictionary<Hit
|
||||||
{
|
{
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue