mirror of
https://github.com/ppy/osu.git
synced 2025-01-12 21:43:22 +08:00
Use full name for round robin
This commit is contained in:
parent
4e625b78e2
commit
4c8c34b43f
@ -16,6 +16,6 @@ namespace osu.Game.Online.Multiplayer
|
||||
AllPlayers,
|
||||
|
||||
[Description("All players (round robin)")]
|
||||
AllPlayersRR
|
||||
AllPlayersRoundRobin
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user