diff --git a/src/main/java/forge/quest/QuestUtilUnlockSets.java b/src/main/java/forge/quest/QuestUtilUnlockSets.java index d5e43bb9305..dd7f8f06774 100644 --- a/src/main/java/forge/quest/QuestUtilUnlockSets.java +++ b/src/main/java/forge/quest/QuestUtilUnlockSets.java @@ -140,12 +140,9 @@ public class QuestUtilUnlockSets { for (CardEdition ex : excludedSets) { switch (ex.getType()) { case CORE: case EXPANSION: case REPRINT: case STARTER: break; - case OTHER: case UNKNOWN: - // don't add non-traditional sets - continue; - default: - throw new RuntimeException("unhandled card edition type: " + ex.getType()); + // don't add non-traditional sets + continue; } long distance = Integer.MAX_VALUE; for (CardEdition in : allowedSets) {