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

Rename modes

This commit is contained in:
smoogipoo 2021-10-22 12:39:48 +09:00
parent f41cf822b0
commit a1c9b56083
2 changed files with 8 additions and 5 deletions

View File

@ -45,7 +45,7 @@ namespace osu.Game.Online.Multiplayer
public MatchType MatchType { get; set; } = MatchType.HeadToHead;
[Key(9)]
public QueueModes QueueMode { get; set; } = QueueModes.HostPick;
public QueueModes QueueMode { get; set; } = QueueModes.HostOnly;
public bool Equals(MultiplayerRoomSettings other)
=> BeatmapID == other.BeatmapID

View File

@ -9,10 +9,13 @@ namespace osu.Game.Online.Multiplayer.Queueing
{
// used for osu-web deserialization so names shouldn't be changed.
[Description("Host pick")]
HostPick,
[Description("Host only")]
HostOnly,
[Description("Karaoke")]
Karaoke,
[Description("Free-for-all")]
FreeForAll,
[Description("Fair rotate")]
FairRotate
}
}