mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 10:22:56 +08:00
Fix ruleset + beatmap being changeable in match
This commit is contained in:
parent
b3403c78da
commit
60cc2314ef
@ -20,7 +20,8 @@ namespace osu.Game.Screens.Multi.Match
|
||||
{
|
||||
public class MatchSubScreen : MultiplayerSubScreen
|
||||
{
|
||||
public bool AllowBeatmapRulesetChange => false;
|
||||
public override bool AllowBeatmapRulesetChange => false;
|
||||
|
||||
public override string Title => room.RoomID.Value == null ? "New room" : room.Name.Value;
|
||||
public override string ShortTitle => "room";
|
||||
|
||||
|
@ -14,7 +14,7 @@ namespace osu.Game.Screens.Multi
|
||||
{
|
||||
public abstract class MultiplayerSubScreen : CompositeDrawable, IMultiplayerSubScreen, IKeyBindingHandler<GlobalAction>
|
||||
{
|
||||
public bool AllowBeatmapRulesetChange => true;
|
||||
public virtual bool AllowBeatmapRulesetChange => true;
|
||||
public bool AllowExternalScreenChange => true;
|
||||
public bool CursorVisible => true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user