1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-05 01:09:06 -09:00

Merge pull request from marthinwurer/master

Fixed Zendikar release date.
This commit is contained in:
theelk801 2017-09-28 08:33:05 -04:00 committed by GitHub
commit 669ba380d0
2 changed files with 10 additions and 1 deletions
Mage.Server.Plugins/Mage.Deck.Constructed/src/mage/deck
Mage.Sets/src/mage/sets

View file

@ -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;

View file

@ -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;