Historic GA fix

This commit is contained in:
austinio7116
2021-04-15 18:56:25 +01:00
parent 08c8e84d72
commit 84014ce9b5
2 changed files with 2 additions and 1 deletions

View File

@@ -302,6 +302,7 @@ public class GameFormat implements Comparable<GameFormat> {
{
coreFormats.add("Standard.txt");
coreFormats.add("Pioneer.txt");
coreFormats.add("Historic.txt");
coreFormats.add("Modern.txt");
coreFormats.add("Legacy.txt");
coreFormats.add("Vintage.txt");

View File

@@ -27,7 +27,7 @@ public final class CardArchetypeLDAGenerator {
List<String> formatStrings = new ArrayList<>();
formatStrings.add(FModel.getFormats().getStandard().getName());
formatStrings.add(FModel.getFormats().getPioneer().getName());
formatStrings.add("Historic"/*FIXME:FModel.getFormats().getHistoric().getName()*/);
formatStrings.add(FModel.getFormats().getHistoric().getName());
formatStrings.add(FModel.getFormats().getModern().getName());
formatStrings.add("Legacy");
formatStrings.add("Vintage");