1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 21:13:20 +08:00

Use full name for round robin

This commit is contained in:
Dan Balasescu 2021-11-19 18:42:34 +09:00
parent 4e625b78e2
commit 4c8c34b43f
3 changed files with 3 additions and 3 deletions

View File

@ -16,6 +16,6 @@ namespace osu.Game.Online.Multiplayer
AllPlayers, AllPlayers,
[Description("All players (round robin)")] [Description("All players (round robin)")]
AllPlayersRR AllPlayersRoundRobin
} }
} }

View File

@ -393,7 +393,7 @@ namespace osu.Game.Screens.OnlinePlay.Multiplayer
break; break;
case QueueMode.AllPlayers: case QueueMode.AllPlayers:
case QueueMode.AllPlayersRR: case QueueMode.AllPlayersRoundRobin:
AddOrEditPlaylistButton.Text = "Add beatmap"; AddOrEditPlaylistButton.Text = "Add beatmap";
AddOrEditPlaylistButton.Alpha = 1; AddOrEditPlaylistButton.Alpha = 1;
break; break;

View File

@ -442,7 +442,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
newItem = room.Playlist.FirstOrDefault(i => !i.Expired) ?? room.Playlist.Last(); newItem = room.Playlist.FirstOrDefault(i => !i.Expired) ?? room.Playlist.Last();
break; break;
case QueueMode.AllPlayersRR: case QueueMode.AllPlayersRoundRobin:
// Group playlist items by (user_id -> count_expired), and select the first available playlist item from a user that has available beatmaps where count_expired is the lowest. // Group playlist items by (user_id -> count_expired), and select the first available playlist item from a user that has available beatmaps where count_expired is the lowest.
throw new NotImplementedException(); throw new NotImplementedException();
} }