mirror of https://github.com/ppy/osu
Fix new scoring related properties not storing to realm due to `internal` spec
This commit is contained in:
parent
49e5558e4f
commit
00c68cad53
|
@ -64,7 +64,7 @@ public class ScoreInfo : RealmObject, IHasGuidPrimaryKey, IHasRealmFiles, ISoftD
|
|||
/// <remarks>
|
||||
/// This may not match the version stored in the replay files.
|
||||
/// </remarks>
|
||||
internal int TotalScoreVersion { get; set; } = LegacyScoreEncoder.LATEST_VERSION;
|
||||
public int TotalScoreVersion { get; set; } = LegacyScoreEncoder.LATEST_VERSION;
|
||||
|
||||
/// <summary>
|
||||
/// Used to preserve the total score for legacy scores.
|
||||
|
@ -72,7 +72,7 @@ public class ScoreInfo : RealmObject, IHasGuidPrimaryKey, IHasRealmFiles, ISoftD
|
|||
/// <remarks>
|
||||
/// Not populated if <see cref="IsLegacyScore"/> is <c>false</c>.
|
||||
/// </remarks>
|
||||
internal long? LegacyTotalScore { get; set; }
|
||||
public long? LegacyTotalScore { get; set; }
|
||||
|
||||
public int MaxCombo { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue