mirror of
https://github.com/ppy/osu.git
synced 2025-01-26 18:52:55 +08:00
Hide spinner ticks / bonus from results screen when not applicable to score
This commit is contained in:
parent
4a79141824
commit
93a189603a
@ -296,6 +296,13 @@ namespace osu.Game.Scoring
|
||||
break;
|
||||
}
|
||||
|
||||
case HitResult.LargeBonus:
|
||||
case HitResult.SmallBonus:
|
||||
if (MaximumStatistics.TryGetValue(r.result, out int count) && count > 0)
|
||||
yield return new HitResultDisplayStatistic(r.result, value, null, r.displayName);
|
||||
|
||||
break;
|
||||
|
||||
case HitResult.SmallTickMiss:
|
||||
case HitResult.LargeTickMiss:
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user