From db694a4c1e9a00b907511250147074ebf572afa1 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 13 May 2015 17:49:42 +0200 Subject: [PATCH] * Otherworldly Journey - Fixed that the returning creature did not get the +1/+1 counter. --- .../src/mage/sets/championsofkamigawa/OtherworldlyJourney.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/Mage.Sets/src/mage/sets/championsofkamigawa/OtherworldlyJourney.java b/Mage.Sets/src/mage/sets/championsofkamigawa/OtherworldlyJourney.java index 7eea5e90a5..35f6d792be 100644 --- a/Mage.Sets/src/mage/sets/championsofkamigawa/OtherworldlyJourney.java +++ b/Mage.Sets/src/mage/sets/championsofkamigawa/OtherworldlyJourney.java @@ -109,9 +109,6 @@ class OtherworldlyJourneyEffect extends OneShotEffect { delayedAbility.setSourceId(source.getSourceId()); delayedAbility.setControllerId(source.getControllerId()); delayedAbility.setSourceObject(source.getSourceObject(game), game); - AddCountersTargetEffect effect = new AddCountersTargetEffect(CounterType.P1P1.createInstance()); - effect.setTargetPointer(new FixedTarget(source.getFirstTarget())); - delayedAbility.addEffect(effect); game.addDelayedTriggeredAbility(delayedAbility); } }