mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 14:32:55 +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();
|
modSelector.DeselectAll();
|
||||||
else
|
else
|
||||||
getScores();
|
getScores();
|
||||||
|
|
||||||
modSelector.FadeTo(userIsSupporter ? 1 : 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void getScores()
|
private void getScores()
|
||||||
@ -260,7 +258,7 @@ namespace osu.Game.Overlays.BeatmapSet.Scores
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (scope.Value != BeatmapLeaderboardScope.Global && !userIsSupporter)
|
if ((scope.Value != BeatmapLeaderboardScope.Global || modSelector.SelectedMods.Count > 0) && !userIsSupporter)
|
||||||
{
|
{
|
||||||
Scores = null;
|
Scores = null;
|
||||||
notSupporterPlaceholder.Show();
|
notSupporterPlaceholder.Show();
|
||||||
|
Loading…
Reference in New Issue
Block a user