mirror of
https://github.com/osukey/osukey.git
synced 2025-08-02 14:17:06 +09:00
Set beatmap of leaderboard to null if NoBeatmapsAvailable is selected
This commit is contained in:
@ -27,8 +27,8 @@ namespace osu.Game.Screens.Select
|
||||
set
|
||||
{
|
||||
beatmap = value;
|
||||
Leaderboard.Beatmap = beatmap?.BeatmapInfo;
|
||||
Details.Beatmap = beatmap?.BeatmapInfo;
|
||||
Leaderboard.Beatmap = beatmap is NoBeatmapsAvailableWorkingBeatmap ? null : beatmap?.BeatmapInfo;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user