1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-11 09:27:29 +08:00

Fix accuracy displaying incorrectly in online contexts

Closes #12221.
This commit is contained in:
Dean Herbert 2021-03-30 22:42:31 +09:00
parent 8bd03c2e2a
commit fb0079fb9f

View File

@ -45,7 +45,7 @@ namespace osu.Game.Users
public double Accuracy;
[JsonIgnore]
public string DisplayAccuracy => Accuracy.FormatAccuracy();
public string DisplayAccuracy => (Accuracy / 100).FormatAccuracy();
[JsonProperty(@"play_count")]
public int PlayCount;