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:
parent
b2f30fbf8c
commit
0de220c45c
@ -15,6 +15,5 @@ namespace osu.Game.Online.Multiplayer
|
||||
[MessagePackObject]
|
||||
public sealed class ForceGameplayStartCountdown : MultiplayerCountdown
|
||||
{
|
||||
public override bool IsExclusive => true;
|
||||
}
|
||||
}
|
||||
|
@ -11,6 +11,5 @@ namespace osu.Game.Online.Multiplayer
|
||||
[MessagePackObject]
|
||||
public sealed class MatchStartCountdown : MultiplayerCountdown
|
||||
{
|
||||
public override bool IsExclusive => true;
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user