mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 19:11:59 -08:00
code review comments for chaos/random booster draft:
1. rename chaos booster draft to random booster draft 2. save packs selected in the user preferences 3. print "Random Boosters" in the player draft viewer during the draft
This commit is contained in:
parent
d57ff3b0b3
commit
ac0aa65aab
13 changed files with 107 additions and 84 deletions
|
|
@ -46,7 +46,7 @@ public class TournamentTypeView implements Serializable {
|
|||
private final boolean limited;
|
||||
private final boolean cubeBooster;
|
||||
private final boolean elimination;
|
||||
private final boolean chaos;
|
||||
private final boolean random;
|
||||
|
||||
|
||||
public TournamentTypeView(TournamentType tournamentType) {
|
||||
|
|
@ -58,7 +58,7 @@ public class TournamentTypeView implements Serializable {
|
|||
this.limited = tournamentType.isLimited();
|
||||
this.cubeBooster = tournamentType.isCubeBooster();
|
||||
this.elimination = tournamentType.isElimination();
|
||||
this.chaos = tournamentType.isChaos();
|
||||
this.random = tournamentType.isRandom();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -98,7 +98,7 @@ public class TournamentTypeView implements Serializable {
|
|||
return elimination;
|
||||
}
|
||||
|
||||
public boolean isChaos(){
|
||||
return chaos;
|
||||
public boolean isRandom(){
|
||||
return random;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue