mirror of
https://github.com/correl/mage.git
synced 2024-11-28 11:09:54 +00:00
Fixed Zendikar release date.
This commit is contained in:
parent
38573ef71a
commit
f22d64df82
2 changed files with 10 additions and 1 deletions
|
@ -109,6 +109,15 @@ public class HistoricalType2 extends Constructed {
|
|||
@Override
|
||||
public boolean validate(Deck deck) {
|
||||
|
||||
// debug code for finding set info
|
||||
// System.out.println();
|
||||
// for (ExpansionSet set : Sets.getInstance().values()) {
|
||||
// if (set.getSetType() == SetType.CORE || set.getSetType() == SetType.EXPANSION) {
|
||||
// System.out.println("Set:\t" + set.getCode() + "\t" + set.getReleaseDate() + "\t" + set.getName() + "\t" + set.getBlockName());
|
||||
// }
|
||||
// }
|
||||
|
||||
|
||||
Map<String, String> leastInvalid = null;
|
||||
|
||||
boolean valid = false;
|
||||
|
|
|
@ -47,7 +47,7 @@ public class Zendikar extends ExpansionSet {
|
|||
}
|
||||
|
||||
private Zendikar() {
|
||||
super("Zendikar", "ZEN", ExpansionSet.buildDate(2009, 8, 26), SetType.EXPANSION);
|
||||
super("Zendikar", "ZEN", ExpansionSet.buildDate(2009, 10, 2), SetType.EXPANSION); // October 2nd, 2009
|
||||
this.blockName = "Zendikar";
|
||||
this.hasBoosters = true;
|
||||
this.numBoosterLands = 1;
|
||||
|
|
Loading…
Reference in a new issue