From ff575f5d660b4e34f45c1cf2defed99155be9cff Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 6 Aug 2013 17:12:37 +0200 Subject: [PATCH] * Otherworldly Journey - Fixed the missing Arcane subtype. --- .../src/mage/sets/championsofkamigawa/OtherworldlyJourney.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/OtherworldlyJourney.java b/Mage.Sets/src/mage/sets/championsofkamigawa/OtherworldlyJourney.java index 0f44c10a63e..a49a3a5f831 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/OtherworldlyJourney.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/OtherworldlyJourney.java @@ -55,6 +55,7 @@ public class OtherworldlyJourney extends CardImpl { public OtherworldlyJourney(UUID ownerId) { super(ownerId, 37, "Otherworldly Journey", Rarity.UNCOMMON, new CardType[]{CardType.INSTANT}, "{1}{W}"); this.expansionSetCode = "CHK"; + this.subtype.add("Arcane"); this.color.setWhite(true); // Exile target creature. At the beginning of the next end step, return that card to the battlefield under its owner's control with a +1/+1 counter on it. this.getSpellAbility().addEffect(new OtherworldlyJourneyEffect());