mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
* Modern Masters set - Fixed wrong release date.
This commit is contained in:
parent
31a2f08efe
commit
2a5c80b393
3 changed files with 6 additions and 4 deletions
|
@ -29,8 +29,10 @@
|
|||
package mage.sets;
|
||||
|
||||
import java.util.GregorianCalendar;
|
||||
import mage.constants.SetType;
|
||||
import mage.cards.ExpansionSet;
|
||||
import mage.constants.SetType;
|
||||
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
|
@ -45,7 +47,7 @@ public class ModernMasters extends ExpansionSet {
|
|||
}
|
||||
|
||||
private ModernMasters() {
|
||||
super("Modern Masters", "MMA", "mage.sets.modernmasters", new GregorianCalendar(2016, 6, 7).getTime(), SetType.REPRINT);
|
||||
super("Modern Masters", "MMA", "mage.sets.modernmasters", new GregorianCalendar(2013, 6, 7).getTime(), SetType.REPRINT);
|
||||
this.hasBasicLands = false;
|
||||
this.hasBoosters = true;
|
||||
this.numBoosterLands = 0;
|
||||
|
|
|
@ -55,7 +55,7 @@ public enum CardRepository {
|
|||
|
||||
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
|
||||
private static final String VERSION_ENTITY_NAME = "card";
|
||||
private static final long CARD_DB_VERSION = 15;
|
||||
private static final long CARD_DB_VERSION = 17;
|
||||
|
||||
private Random random = new Random();
|
||||
private Dao<CardInfo, Object> cardDao;
|
||||
|
|
|
@ -23,7 +23,7 @@ public enum ExpansionRepository {
|
|||
|
||||
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
|
||||
private static final String VERSION_ENTITY_NAME = "expansion";
|
||||
private static final long EXPANSION_DB_VERSION = 2;
|
||||
private static final long EXPANSION_DB_VERSION = 3;
|
||||
|
||||
private Dao<ExpansionInfo, Object> expansionDao;
|
||||
|
||||
|
|
Loading…
Reference in a new issue