Fix some data types on ScoreInfo

This commit is contained in:
Dean Herbert
2018-11-30 20:43:38 +09:00
parent cc488fe275
commit af3ef9a089
6 changed files with 15 additions and 16 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.Online.API.Requests.Responses
public class APIScoreInfo : ScoreInfo
{
[JsonProperty(@"score")]
private double totalScore
private int totalScore
{
set => TotalScore = value;
}