Skip to content

Commit

Permalink
修改自动选图模式
Browse files Browse the repository at this point in the history
  • Loading branch information
cdwcgt committed Dec 28, 2024
1 parent a766a60 commit ccc7d62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osu.Game.Tournament/Screens/MapPool/MapPoolScreen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ private void setNextMode()

if (!hasAllBans)
{
// Ban phase: switch teams every second ban.
nextColour = CurrentMatch.Value.PicksBans.Count % 2 == 1
// Ban phase : switch teams every ban, except for the first ban which generally goes to the team that placed the last ban.
nextColour = pickType == ChoiceType.Ban
? getOppositeTeamColour(lastPickColour)
: lastPickColour;
}
Expand Down

0 comments on commit ccc7d62

Please sign in to comment.