1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 20:07:25 +08:00

Always show mod selector on beatmap info leaderboards regardless of supporter

This commit is contained in:
Joseph Madamba 2022-05-29 21:13:53 -07:00
parent 5c138de446
commit f3371e8bc8

View File

@ -242,8 +242,6 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
modSelector.DeselectAll();
else
getScores();
modSelector.FadeTo(userIsSupporter ? 1 : 0);
}
private void getScores()
@ -260,7 +258,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
return;
}
if (scope.Value != BeatmapLeaderboardScope.Global && !userIsSupporter)
if ((scope.Value != BeatmapLeaderboardScope.Global || modSelector.SelectedMods.Count > 0) && !userIsSupporter)
{
Scores = null;
notSupporterPlaceholder.Show();