mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed start date of some constructed formats (e.g. Frontier missing M15) for deck editor.
This commit is contained in:
parent
fe97f289f8
commit
712565562e
1 changed files with 4 additions and 4 deletions
|
@ -229,10 +229,10 @@ public class ConstructedFormats {
|
|||
|
||||
return builder.toString();
|
||||
}
|
||||
|
||||
private static final Date extendedDate = new GregorianCalendar(2009, 8, 20).getTime();
|
||||
private static final Date frontierDate = new GregorianCalendar(2014, 7, 17).getTime();
|
||||
private static final Date modernDate = new GregorianCalendar(2003, 7, 20).getTime();
|
||||
// Attention -Month is 0 Based so Feb = 1 for example.
|
||||
private static final Date extendedDate = new GregorianCalendar(2009, 7, 20).getTime();
|
||||
private static final Date frontierDate = new GregorianCalendar(2014, 6, 17).getTime();
|
||||
private static final Date modernDate = new GregorianCalendar(2003, 6, 20).getTime();
|
||||
|
||||
// for all sets just return empty list
|
||||
private static final List<String> all = new ArrayList<>();
|
||||
|
|
Loading…
Reference in a new issue