Fix scores being stored as ints

This commit is contained in:
smoogipoo
2019-02-26 13:10:07 +09:00
parent d6cfce8bce
commit 8a943a6e65
3 changed files with 4 additions and 4 deletions

View File

@ -25,7 +25,7 @@ namespace osu.Game.Scoring
public ScoreRank Rank { get; set; }
[JsonProperty("total_score")]
public int TotalScore { get; set; }
public long TotalScore { get; set; }
[JsonProperty("accuracy")]
[Column(TypeName="DECIMAL(1,4)")]