1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:13:21 +08:00

Change IsExclusive default value to true

This commit is contained in:
Dean Herbert 2022-09-08 17:54:29 +09:00
parent b2f30fbf8c
commit 0de220c45c
3 changed files with 1 additions and 3 deletions

View File

@ -15,6 +15,5 @@ namespace osu.Game.Online.Multiplayer
[MessagePackObject]
public sealed class ForceGameplayStartCountdown : MultiplayerCountdown
{
public override bool IsExclusive => true;
}
}

View File

@ -11,6 +11,5 @@ namespace osu.Game.Online.Multiplayer
[MessagePackObject]
public sealed class MatchStartCountdown : MultiplayerCountdown
{
public override bool IsExclusive => true;
}
}

View File

@ -33,6 +33,6 @@ namespace osu.Game.Online.Multiplayer
/// <summary>
/// Whether only a single instance of this <see cref="MultiplayerCountdown"/> type may be active at any one time.
/// </summary>
public virtual bool IsExclusive => false;
public virtual bool IsExclusive => true;
}
}