mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 23:10:50 +08:00
Fix acc challenge percentage rounding (#37155)
Missed this in the earlier PR. As on [discord.](https://discord.com/channels/188630481301012481/1097318920991559880/1488164048976609420)
This commit is contained in:
@@ -43,7 +43,7 @@ namespace osu.Game.Rulesets.Mods
|
||||
get
|
||||
{
|
||||
if (!MinimumAccuracy.IsDefault)
|
||||
yield return ("Minimum accuracy", $"{MinimumAccuracy.Value:##%}");
|
||||
yield return ("Minimum accuracy", MinimumAccuracy.Value.ToLocalisableString(@"P1"));
|
||||
|
||||
if (!AccuracyJudgeMode.IsDefault)
|
||||
yield return ("Accuracy mode", AccuracyJudgeMode.Value.ToLocalisableString());
|
||||
|
||||
Reference in New Issue
Block a user