Added optional customformats.txt file (to be put in the user preferences folder) to append formats to the regular list so that custom formats can be retained between upgrades

This commit is contained in:
austinio7116
2017-04-27 18:53:44 +00:00
parent b3a6403867
commit f5dbde0cf3
2 changed files with 13 additions and 0 deletions

View File

@@ -280,6 +280,11 @@ public class GameFormat implements Comparable<GameFormat> {
}
return result;
}
@Override
public void add(GameFormat item) {
naturallyOrdered.add(item);
}
}
public final Predicate<CardEdition> editionLegalPredicate = new Predicate<CardEdition>() {