* Swamps of Ice Age set - Corrected wrong collector numbers (were shown as Sulforous Springs).

This commit is contained in:
LevelX2 2013-06-28 22:53:56 +02:00
parent c9392d5eed
commit ea7bfdfc21
4 changed files with 4 additions and 4 deletions

View file

@ -36,7 +36,7 @@ import java.util.UUID;
public class Swamp1 extends mage.cards.basiclands.Swamp { public class Swamp1 extends mage.cards.basiclands.Swamp {
public Swamp1(UUID ownerId) { public Swamp1(UUID ownerId) {
super(ownerId, 351); super(ownerId, 353);
this.expansionSetCode = "ICE"; this.expansionSetCode = "ICE";
} }

View file

@ -36,7 +36,7 @@ import java.util.UUID;
public class Swamp2 extends mage.cards.basiclands.Swamp { public class Swamp2 extends mage.cards.basiclands.Swamp {
public Swamp2(UUID ownerId) { public Swamp2(UUID ownerId) {
super(ownerId, 352); super(ownerId, 354);
this.expansionSetCode = "ICE"; this.expansionSetCode = "ICE";
} }

View file

@ -36,7 +36,7 @@ import java.util.UUID;
public class Swamp3 extends mage.cards.basiclands.Swamp { public class Swamp3 extends mage.cards.basiclands.Swamp {
public Swamp3(UUID ownerId) { public Swamp3(UUID ownerId) {
super(ownerId, 353); super(ownerId, 355);
this.expansionSetCode = "ICE"; this.expansionSetCode = "ICE";
} }

View file

@ -54,7 +54,7 @@ public enum CardRepository {
instance; instance;
private static final String JDBC_URL = "jdbc:sqlite:db/cards.db"; 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 Random random = new Random();
private Dao<CardInfo, Object> cardDao; private Dao<CardInfo, Object> cardDao;