mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
Historic GA fix
This commit is contained in:
@@ -302,6 +302,7 @@ public class GameFormat implements Comparable<GameFormat> {
|
|||||||
{
|
{
|
||||||
coreFormats.add("Standard.txt");
|
coreFormats.add("Standard.txt");
|
||||||
coreFormats.add("Pioneer.txt");
|
coreFormats.add("Pioneer.txt");
|
||||||
|
coreFormats.add("Historic.txt");
|
||||||
coreFormats.add("Modern.txt");
|
coreFormats.add("Modern.txt");
|
||||||
coreFormats.add("Legacy.txt");
|
coreFormats.add("Legacy.txt");
|
||||||
coreFormats.add("Vintage.txt");
|
coreFormats.add("Vintage.txt");
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ public final class CardArchetypeLDAGenerator {
|
|||||||
List<String> formatStrings = new ArrayList<>();
|
List<String> formatStrings = new ArrayList<>();
|
||||||
formatStrings.add(FModel.getFormats().getStandard().getName());
|
formatStrings.add(FModel.getFormats().getStandard().getName());
|
||||||
formatStrings.add(FModel.getFormats().getPioneer().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(FModel.getFormats().getModern().getName());
|
||||||
formatStrings.add("Legacy");
|
formatStrings.add("Legacy");
|
||||||
formatStrings.add("Vintage");
|
formatStrings.add("Vintage");
|
||||||
|
|||||||
Reference in New Issue
Block a user