mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Gameplay: fixed missing RTR set in Pioneer format;
This commit is contained in:
parent
7469d59eee
commit
b61e50ae61
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ public class Pioneer extends Constructed {
|
|||
public Pioneer() {
|
||||
super("Constructed - Pioneer");
|
||||
|
||||
Date cutoff = new GregorianCalendar(2012, 10, 5).getTime(); // M15 release date
|
||||
Date cutoff = new GregorianCalendar(2012, 10, 5).getTime(); // RTR release date
|
||||
for (ExpansionSet set : Sets.getInstance().values()) {
|
||||
if (set.getSetType().isStandardLegal() && (set.getReleaseDate().after(cutoff) || set.getReleaseDate().equals(cutoff))) {
|
||||
setCodes.add(set.getCode());
|
||||
|
|
|
@ -18,7 +18,7 @@ public final class ReturnToRavnica extends ExpansionSet {
|
|||
}
|
||||
|
||||
private ReturnToRavnica() {
|
||||
super("Return to Ravnica", "RTR", ExpansionSet.buildDate(2012, 9, 29), SetType.EXPANSION);
|
||||
super("Return to Ravnica", "RTR", ExpansionSet.buildDate(2012, 10, 5), SetType.EXPANSION);
|
||||
this.blockName = "Return to Ravnica";
|
||||
this.hasBoosters = true;
|
||||
this.numBoosterLands = 1;
|
||||
|
|
Loading…
Reference in a new issue