diff --git a/Mage.Sets/src/mage/sets/iceage/Swamp1.java b/Mage.Sets/src/mage/sets/iceage/Swamp1.java index 0e12713335..4a7bca7815 100644 --- a/Mage.Sets/src/mage/sets/iceage/Swamp1.java +++ b/Mage.Sets/src/mage/sets/iceage/Swamp1.java @@ -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"; } diff --git a/Mage.Sets/src/mage/sets/iceage/Swamp2.java b/Mage.Sets/src/mage/sets/iceage/Swamp2.java index 6158384913..9a0c266349 100644 --- a/Mage.Sets/src/mage/sets/iceage/Swamp2.java +++ b/Mage.Sets/src/mage/sets/iceage/Swamp2.java @@ -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"; } diff --git a/Mage.Sets/src/mage/sets/iceage/Swamp3.java b/Mage.Sets/src/mage/sets/iceage/Swamp3.java index c515e8d56d..0714bbe789 100644 --- a/Mage.Sets/src/mage/sets/iceage/Swamp3.java +++ b/Mage.Sets/src/mage/sets/iceage/Swamp3.java @@ -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"; } diff --git a/Mage/src/mage/cards/repository/CardRepository.java b/Mage/src/mage/cards/repository/CardRepository.java index feb74c0709..3d979c90ef 100644 --- a/Mage/src/mage/cards/repository/CardRepository.java +++ b/Mage/src/mage/cards/repository/CardRepository.java @@ -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 cardDao;