- Fix quest draft tournaments not available in Vintage and Legacy sanctioned format quests.

This commit is contained in:
Agetian
2015-02-20 16:45:55 +00:00
parent 750de4af8c
commit 33a9c169fd

View File

@@ -721,9 +721,10 @@ public class QuestEventDraft {
for (CardBlock block : blocks) {
boolean blockAllowed = true;
boolean allBlocksSanctioned = quest.getFormat().getAllowedSetCodes().isEmpty();
for (CardEdition set : block.getSets()) {
if (!allowedQuestSets.contains(set)) {
if (!allowedQuestSets.contains(set) && !allBlocksSanctioned) {
blockAllowed = false;
break;
}