* Added promotional, Duel Deck and Non-standard-legal sets to SetType. Changed sets and set selection accordingly.

This commit is contained in:
LevelX2 2015-02-04 00:34:18 +01:00
parent 67b3ee7872
commit 41c6c47092
36 changed files with 43 additions and 41 deletions

View file

@ -564,7 +564,7 @@ public class ConstructedFormats {
}
for (ExpansionInfo set : ExpansionRepository.instance.getAll()) {
if (!set.getType().equals(SetType.REPRINT) && !set.getType().equals(SetType.JOKESET)) {
if (set.getType().equals(SetType.CORE) || set.getType().equals(SetType.EXPANSION)) {
if (set.getReleaseDate().after(cutoff.getTime())) {
standard.add(set.getCode());
}