From 4d6e7ce6a2e15b08de10a407cd6c090e675cd046 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 28 May 2015 16:59:30 +0200 Subject: [PATCH] * Quickling - Fixed that the selection of the other creature you control was handled targeted. --- Mage.Sets/src/mage/sets/magic2015/Quickling.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/magic2015/Quickling.java b/Mage.Sets/src/mage/sets/magic2015/Quickling.java index b508d869fd9..c23893233e4 100644 --- a/Mage.Sets/src/mage/sets/magic2015/Quickling.java +++ b/Mage.Sets/src/mage/sets/magic2015/Quickling.java @@ -102,8 +102,7 @@ class QuicklingEffect extends OneShotEffect { Player controller = game.getPlayer(source.getControllerId()); if (controller != null) { boolean targetChosen = false; - TargetPermanent target = new TargetPermanent(1, 1, filter, false); - + TargetPermanent target = new TargetPermanent(1, 1, filter, true); if (target.canChoose(controller.getId(), game) && controller.chooseUse(outcome, "Return another creature you control to its owner's hand?", game)) { controller.chooseTarget(Outcome.ReturnToHand, target, source, game); Permanent permanent = game.getPermanent(target.getFirstTarget());