forked from External/mage
New feature: "Chaos Remixed" booster draft (#10328)
* Fix error in draft pick logger that was failing on chaos drafts with fewer than 3 sets * Implement Remixed Booster Draft * Add debug test * minor cleanup * Cleanup unnecessary checks * Fix elimination tournament type * Add note for future improvement
This commit is contained in:
parent
6d4e353867
commit
4cc9329b15
20 changed files with 437 additions and 47 deletions
|
|
@ -21,6 +21,7 @@ public class TournamentTypeView implements Serializable {
|
|||
private final boolean cubeBooster;
|
||||
private final boolean elimination;
|
||||
private final boolean random;
|
||||
private final boolean remixed;
|
||||
private final boolean richMan;
|
||||
private final boolean jumpstart;
|
||||
|
||||
|
|
@ -34,6 +35,7 @@ public class TournamentTypeView implements Serializable {
|
|||
this.cubeBooster = tournamentType.isCubeBooster();
|
||||
this.elimination = tournamentType.isElimination();
|
||||
this.random = tournamentType.isRandom();
|
||||
this.remixed = tournamentType.isRemixed();
|
||||
this.richMan = tournamentType.isRichMan();
|
||||
this.jumpstart = tournamentType.isJumpstart();
|
||||
}
|
||||
|
|
@ -79,6 +81,10 @@ public class TournamentTypeView implements Serializable {
|
|||
return random;
|
||||
}
|
||||
|
||||
public boolean isRemixed() {
|
||||
return remixed;
|
||||
}
|
||||
|
||||
public boolean isRichMan() {
|
||||
return richMan;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue