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:
Brodee 2015-06-23 20:59:05 -07:00
parent d57ff3b0b3
commit ac0aa65aab
13 changed files with 107 additions and 84 deletions

View file

@ -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;
}
}