Skip to content

Commit

Permalink
Pull from all available players for opponent selection in Tournament.
Browse files Browse the repository at this point in the history
  • Loading branch information
roncli committed Nov 6, 2018
1 parent 9358f97 commit 0c17114
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions event.js
Expand Up @@ -1361,13 +1361,13 @@ class Event {
await Event.generateFinalsMatch([players[1], players[2]]);
break;
case 4:
await Event.setupFinalsOpponentSelection(players[0], [players[2], players[3]]);
await Event.setupFinalsOpponentSelection(players[0], [players[1], players[2], players[3]]);
break;
case 5:
await Event.generateFinalsMatch([players[3], players[4]]);
break;
case 6:
await Event.setupFinalsOpponentSelection(players[2], [players[4], players[5]]);
await Event.setupFinalsOpponentSelection(players[2], [players[3], players[4], players[5]]);
break;
}
}
Expand Down

0 comments on commit 0c17114

Please sign in to comment.