1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 22:22:59 +08:00

Block beatmap presents in style select screen

This commit is contained in:
Dan Balasescu 2024-12-24 18:04:36 +09:00
parent 7777c44775
commit 40486c4f38
No known key found for this signature in database

View File

@ -18,7 +18,7 @@ using osu.Game.Users;
namespace osu.Game.Screens.OnlinePlay.Multiplayer namespace osu.Game.Screens.OnlinePlay.Multiplayer
{ {
public partial class MultiplayerMatchStyleSelect : SongSelect, IOnlinePlaySubScreen public partial class MultiplayerMatchStyleSelect : SongSelect, IOnlinePlaySubScreen, IHandlePresentBeatmap
{ {
public string ShortTitle => "style selection"; public string ShortTitle => "style selection";
@ -65,6 +65,11 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
return true; return true;
} }
public void PresentBeatmap(WorkingBeatmap beatmap, RulesetInfo ruleset)
{
// This screen cannot present beatmaps.
}
private partial class DifficultySelectFilterControl : FilterControl private partial class DifficultySelectFilterControl : FilterControl
{ {
private readonly PlaylistItem item; private readonly PlaylistItem item;