1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 12:47:23 +08:00

Fix new scoring related properties not storing to realm due to internal spec

This commit is contained in:
Dean Herbert 2023-07-05 19:47:44 +09:00
parent 49e5558e4f
commit 00c68cad53

View File

@ -64,7 +64,7 @@ namespace osu.Game.Scoring
/// <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 @@ namespace osu.Game.Scoring
/// <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; }