Fixed bad logic in QuestWorld.java.

This commit is contained in:
RumbleBBU
2012-12-30 08:56:59 +00:00
parent 004684a473
commit d7adf38ae0

View File

@@ -167,7 +167,7 @@ public class QuestWorld {
throw new RuntimeException("World '" + useName + "' must have a directory! Check worlds.txt file");
}
if (!sets.isEmpty() || bannedCards.isEmpty()) {
if (!sets.isEmpty() || !bannedCards.isEmpty()) {
useFormat = new GameFormatQuest(useName, sets, bannedCards);
}