From bedac98e06de0ca4fd5886f7217998cc9e71b7ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Dach?= Date: Mon, 26 May 2025 13:09:06 +0200 Subject: [PATCH] Add TODO marking incompatible logic Chances are this will not be materially noticed anyway because I'm not even sure that unranked mod scores *can* show up on leaderboards. --- osu.Game/Overlays/BeatmapSet/Scores/ScoreTable.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osu.Game/Overlays/BeatmapSet/Scores/ScoreTable.cs b/osu.Game/Overlays/BeatmapSet/Scores/ScoreTable.cs index be6ad49150..0c8943ba7d 100644 --- a/osu.Game/Overlays/BeatmapSet/Scores/ScoreTable.cs +++ b/osu.Game/Overlays/BeatmapSet/Scores/ScoreTable.cs @@ -200,6 +200,8 @@ namespace osu.Game.Overlays.BeatmapSet.Scores content.Add(new StatisticText(count, maxCount, @"N0") { Colour = count == 0 ? Color4.Gray : Color4.White }); } + // TODO: all this should be using the same sort of logic as `DrawableProfileScore` is, but that's not easily done + // unless the ENTIRE overlay can be weaned off of `ScoreInfo` and use `SoloScoreInfo` instead if (showPerformancePoints) { if (!score.Ranked)