Changed set selection for tournament boosters to only show sets with boosters. Closes issue #91.

This commit is contained in:
LevelX2 2013-01-02 15:46:21 +01:00
parent 94fd2429d1
commit 5517474c90
3 changed files with 21 additions and 4 deletions

View file

@ -362,7 +362,7 @@ public class NewTournamentDialog extends MageDialog {
}
while (packs.size() < numPacks) {
JComboBox pack = new JComboBox();
pack.setModel(new DefaultComboBoxModel(Sets.getInstance().getSortedByReleaseDate()));
pack.setModel(new DefaultComboBoxModel(Sets.getInstance().getWithBoosterSortedByReleaseDate()));
pnlPacks.add(pack);
packs.add(pack);
pack.addActionListener(new java.awt.event.ActionListener() {