Update many score-related classes to move closer to being able to persist to realm

This commit is contained in:
Dean Herbert
2021-12-06 22:47:00 +09:00
parent e44751c275
commit 2a4bee61dd
14 changed files with 58 additions and 61 deletions

View File

@ -127,7 +127,7 @@ namespace osu.Game.Screens.Select.Leaderboards
if (Scope == BeatmapLeaderboardScope.Local)
{
var scores = scoreManager
.QueryScores(s => !s.DeletePending && s.BeatmapInfo.ID == fetchBeatmapInfo.ID && s.Ruleset.ID == ruleset.Value.ID);
.QueryScores(s => !s.DeletePending && s.BeatmapInfo.ID == fetchBeatmapInfo.ID && s.Ruleset.OnlineID == ruleset.Value.ID);
if (filterMods && !mods.Value.Any())
{