diff --git a/Mage.Sets/src/mage/sets/magic2015/Quickling.java b/Mage.Sets/src/mage/sets/magic2015/Quickling.java index 3a36f8013f5..ec85face6d8 100644 --- a/Mage.Sets/src/mage/sets/magic2015/Quickling.java +++ b/Mage.Sets/src/mage/sets/magic2015/Quickling.java @@ -105,10 +105,9 @@ class QuicklingEffect extends OneShotEffect { boolean targetChosen = false; TargetPermanent target = new TargetPermanent(1, 1, filter, false); - if (target.canChoose(controller.getId(), game)) { - controller.choose(Outcome.ReturnToHand, target, source.getSourceId(), game); + 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()); - if ( permanent != null ) { targetChosen = true; controller.moveCardToHandWithInfo(permanent, source.getSourceId(), game, Zone.BATTLEFIELD);