diff --git a/forge-game/src/main/java/forge/game/GameFormat.java b/forge-game/src/main/java/forge/game/GameFormat.java index 026b83ea942..22eb3f1abb9 100644 --- a/forge-game/src/main/java/forge/game/GameFormat.java +++ b/forge-game/src/main/java/forge/game/GameFormat.java @@ -101,9 +101,10 @@ public class GameFormat implements Comparable { this.effectiveDate = effectiveDate; if(sets != null) { + StaticData data = StaticData.instance(); Set parsedSets = new HashSet<>(); for (String set : sets) { - if (StaticData.instance().getEditions().get(set) == null) { + if ((data.getEditions().get(set) == null) && (data.getCustomEditions().get(set) == null)) { System.out.println("Set " + set + " in format " + fName + " does not match any valid editions!"); continue; }