Skip to content

Commit

Permalink
Merge pull request ppy#12227 from peppy/fix-accuracy-display
Browse files Browse the repository at this point in the history
Fix accuracy displaying incorrectly in online contexts
  • Loading branch information
peppy authored Mar 30, 2021
2 parents 8bd03c2 + fb0079f commit e848444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osu.Game/Users/UserStatistics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public struct LevelInfo
public double Accuracy;

[JsonIgnore]
public string DisplayAccuracy => Accuracy.FormatAccuracy();
public string DisplayAccuracy => (Accuracy / 100).FormatAccuracy();

[JsonProperty(@"play_count")]
public int PlayCount;
Expand Down

0 comments on commit e848444

Please sign in to comment.