mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 09:27:29 +08:00
Replace Count() from CurrentMatch.Value.PicksBans with property alternative
This commit is contained in:
parent
a33a4c4d1d
commit
ecbf07c52a
@ -161,7 +161,7 @@ namespace osu.Game.Tournament.Screens.MapPool
|
||||
|
||||
if (!hasAllBans)
|
||||
// If it's the third ban or later, we need to check if it's the team's first or second ban in a row
|
||||
nextColour = (CurrentMatch.Value.PicksBans.Count() >= 2 ? CurrentMatch.Value.PicksBans[^2]?.Team : previousBan) == TeamColour.Red ? TeamColour.Blue : TeamColour.Red;
|
||||
nextColour = (CurrentMatch.Value.PicksBans.Count >= 2 ? CurrentMatch.Value.PicksBans[^2]?.Team : previousBan) == TeamColour.Red ? TeamColour.Blue : TeamColour.Red;
|
||||
|
||||
if (hasAllBans && pickType == ChoiceType.Ban)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user