mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 00:40:09 +09:00
Fix ruleset + beatmap being changeable in match
This commit is contained in:
@ -20,7 +20,8 @@ namespace osu.Game.Screens.Multi.Match
|
|||||||
{
|
{
|
||||||
public class MatchSubScreen : MultiplayerSubScreen
|
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 Title => room.RoomID.Value == null ? "New room" : room.Name.Value;
|
||||||
public override string ShortTitle => "room";
|
public override string ShortTitle => "room";
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ namespace osu.Game.Screens.Multi
|
|||||||
{
|
{
|
||||||
public abstract class MultiplayerSubScreen : CompositeDrawable, IMultiplayerSubScreen, IKeyBindingHandler<GlobalAction>
|
public abstract class MultiplayerSubScreen : CompositeDrawable, IMultiplayerSubScreen, IKeyBindingHandler<GlobalAction>
|
||||||
{
|
{
|
||||||
public bool AllowBeatmapRulesetChange => true;
|
public virtual bool AllowBeatmapRulesetChange => true;
|
||||||
public bool AllowExternalScreenChange => true;
|
public bool AllowExternalScreenChange => true;
|
||||||
public bool CursorVisible => true;
|
public bool CursorVisible => true;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user