mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Minimal numer of players for sealed elimination tournament set to 2, so one can match with only one other player.
This commit is contained in:
parent
76233a4252
commit
2ff4dcd283
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public class SealedEliminationTournamentType extends TournamentType<SealedElimin
|
|||
public SealedEliminationTournamentType() {
|
||||
this.name = "Sealed Elimination";
|
||||
this.maxPlayers = 16;
|
||||
this.minPlayers = 4;
|
||||
this.minPlayers = 2;
|
||||
this.numBoosters = 6;
|
||||
this.draft = false;
|
||||
this.limited = true;
|
||||
|
|
Loading…
Reference in a new issue