mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
Always show mod selector on beatmap info leaderboards regardless of supporter
This commit is contained in:
parent
5c138de446
commit
f3371e8bc8
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user