mirror of
https://github.com/ppy/osu.git
synced 2026-05-18 12:40:18 +08:00
Always show mod selector on beatmap info leaderboards regardless of supporter
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user