From db4616f821667393380813f7029c19d4f6494b12 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 8 Apr 2013 18:10:51 +0200 Subject: [PATCH] Fixed 3 more wrong card names and changed the db version to 4 to refresh the db after all the change of card names. --- .../src/mage/sets/championsofkamigawa/MyojinOfLifesWeb.java | 2 +- .../src/mage/sets/championsofkamigawa/MyojinOfNightsReach.java | 2 +- Mage.Sets/src/mage/sets/urzassaga/GorillaWarrior.java | 2 +- Mage/src/mage/cards/repository/CardRepository.java | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/MyojinOfLifesWeb.java b/Mage.Sets/src/mage/sets/championsofkamigawa/MyojinOfLifesWeb.java index d29aff59f01..2241a84c556 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/MyojinOfLifesWeb.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/MyojinOfLifesWeb.java @@ -67,7 +67,7 @@ public class MyojinOfLifesWeb extends CardImpl { } public MyojinOfLifesWeb(UUID ownerId) { - super(ownerId, 229, "Myojin of Lifes Web", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{6}{G}{G}{G}"); + super(ownerId, 229, "Myojin of Life's Web", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{6}{G}{G}{G}"); this.expansionSetCode = "CHK"; this.supertype.add("Legendary"); this.subtype.add("Spirit"); diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/MyojinOfNightsReach.java b/Mage.Sets/src/mage/sets/championsofkamigawa/MyojinOfNightsReach.java index f2fc5b93ab9..ef1ae142bbf 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/MyojinOfNightsReach.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/MyojinOfNightsReach.java @@ -59,7 +59,7 @@ import mage.watchers.common.CastFromHandWatcher; public class MyojinOfNightsReach extends CardImpl { public MyojinOfNightsReach(UUID ownerId) { - super(ownerId, 126, "Myojin of Nights Reach", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{5}{B}{B}{B}"); + super(ownerId, 126, "Myojin of Night's Reach", Rarity.RARE, new CardType[]{CardType.CREATURE}, "{5}{B}{B}{B}"); this.expansionSetCode = "CHK"; this.supertype.add("Legendary"); this.subtype.add("Spirit"); diff --git a/Mage.Sets/src/mage/sets/urzassaga/GorillaWarrior.java b/Mage.Sets/src/mage/sets/urzassaga/GorillaWarrior.java index 65e9fca960c..bf318ae08c7 100644 --- a/Mage.Sets/src/mage/sets/urzassaga/GorillaWarrior.java +++ b/Mage.Sets/src/mage/sets/urzassaga/GorillaWarrior.java @@ -41,7 +41,7 @@ import mage.cards.CardImpl; public class GorillaWarrior extends CardImpl { public GorillaWarrior (UUID ownerId) { - super(ownerId, 256, "GorillaWarrior", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{G}"); + super(ownerId, 256, "Gorilla Warrior", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{G}"); this.expansionSetCode = "USG"; this.subtype.add("Ape"); this.color.setGreen(true); diff --git a/Mage/src/mage/cards/repository/CardRepository.java b/Mage/src/mage/cards/repository/CardRepository.java index 1a4dea2d354..46ac55c5d89 100644 --- a/Mage/src/mage/cards/repository/CardRepository.java +++ b/Mage/src/mage/cards/repository/CardRepository.java @@ -53,7 +53,7 @@ public enum CardRepository { instance; private static final String JDBC_URL = "jdbc:sqlite:db/cards.db"; - private static final long DB_VERSION = 3; + private static final long DB_VERSION = 4; private Random random = new Random(); private Dao cardDao;