1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 19:03:08 +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,
[Description("All players (round robin)")]
AllPlayersRR
AllPlayersRoundRobin
}
}

View File

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

View File

@ -442,7 +442,7 @@ namespace osu.Game.Tests.Visual.Multiplayer
newItem = room.Playlist.FirstOrDefault(i => !i.Expired) ?? room.Playlist.Last();
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.
throw new NotImplementedException();
}