mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Swamps of Ice Age set - Corrected wrong collector numbers (were shown as Sulforous Springs).
This commit is contained in:
parent
c9392d5eed
commit
ea7bfdfc21
4 changed files with 4 additions and 4 deletions
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Swamp1 extends mage.cards.basiclands.Swamp {
|
||||
|
||||
public Swamp1(UUID ownerId) {
|
||||
super(ownerId, 351);
|
||||
super(ownerId, 353);
|
||||
this.expansionSetCode = "ICE";
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Swamp2 extends mage.cards.basiclands.Swamp {
|
||||
|
||||
public Swamp2(UUID ownerId) {
|
||||
super(ownerId, 352);
|
||||
super(ownerId, 354);
|
||||
this.expansionSetCode = "ICE";
|
||||
}
|
||||
|
||||
|
|
|
@ -36,7 +36,7 @@ import java.util.UUID;
|
|||
public class Swamp3 extends mage.cards.basiclands.Swamp {
|
||||
|
||||
public Swamp3(UUID ownerId) {
|
||||
super(ownerId, 353);
|
||||
super(ownerId, 355);
|
||||
this.expansionSetCode = "ICE";
|
||||
}
|
||||
|
||||
|
|
|
@ -54,7 +54,7 @@ public enum CardRepository {
|
|||
instance;
|
||||
|
||||
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db";
|
||||
private static final long DB_VERSION = 7;
|
||||
private static final long DB_VERSION = 8;
|
||||
|
||||
private Random random = new Random();
|
||||
private Dao<CardInfo, Object> cardDao;
|
||||
|
|
Loading…
Reference in a new issue