mirror of
https://github.com/correl/mage.git
synced 2025-03-31 01:07:39 -09:00
* Booster draft swiss - Fixed a bug that the draft object was not set to the tournament object.
This commit is contained in:
parent
031a307382
commit
2c164af920
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ public class BoosterDraftSwissTournament extends TournamentSwiss {
|
|||
}
|
||||
|
||||
protected void draft() {
|
||||
Draft draft = new BoosterDraft((DraftOptions) options.getLimitedOptions(), getSets());
|
||||
draft = new BoosterDraft((DraftOptions) options.getLimitedOptions(), getSets());
|
||||
for (TournamentPlayer player: players.values()) {
|
||||
draft.addPlayer(player.getPlayer());
|
||||
player.setState(TournamentPlayerState.DRAFTING);
|
||||
|
|
Loading…
Add table
Reference in a new issue