* UI: fixed that RTR cards doesn't shows in deck editor's pioneer format filter;

This commit is contained in:
Oleg Agafonov 2020-01-05 01:35:40 +04:00
parent 25630ecc22
commit 3ce1296886

View file

@ -28,10 +28,10 @@ public final class ConstructedFormats {
public static final Standard STANDARD_CARDS = new Standard(); public static final Standard STANDARD_CARDS = new Standard();
// Attention -Month is 0 Based so Feb = 1 for example. // // Attention -Month is 0 Based so Feb = 1 for example. //
private static final Date extendedDate = new GregorianCalendar(2009, Calendar.AUGUST, 20).getTime(); private static final Date extendedDate = new GregorianCalendar(2009, Calendar.AUGUST, 20 - 1).getTime();
private static final Date frontierDate = new GregorianCalendar(2014, Calendar.JULY, 17).getTime(); private static final Date frontierDate = new GregorianCalendar(2014, Calendar.JULY, 18 - 1).getTime();
private static final Date pioneerDate = new GregorianCalendar(2012, Calendar.NOVEMBER, 5).getTime(); private static final Date pioneerDate = new GregorianCalendar(2012, Calendar.OCTOBER, 5 - 1).getTime();
private static final Date modernDate = new GregorianCalendar(2003, Calendar.JULY, 20).getTime(); private static final Date modernDate = new GregorianCalendar(2003, Calendar.JULY, 28 - 1).getTime();
// for all sets just return empty list // for all sets just return empty list
private static final List<String> all = new ArrayList<>(); private static final List<String> all = new ArrayList<>();
@ -137,7 +137,7 @@ public final class ConstructedFormats {
underlyingSetCodesPerFormat.get(FRONTIER).add(set.getCode()); underlyingSetCodesPerFormat.get(FRONTIER).add(set.getCode());
} }
// frontier // pioneer
if (set.getType().isStandardLegal() && set.getReleaseDate().after(pioneerDate)) { if (set.getType().isStandardLegal() && set.getReleaseDate().after(pioneerDate)) {
underlyingSetCodesPerFormat.get(PIONEER).add(set.getCode()); underlyingSetCodesPerFormat.get(PIONEER).add(set.getCode());
} }