From e63eef16aa9d8070e29525c4ffb5286fc6291b50 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 19 May 2015 13:24:27 +0200 Subject: [PATCH] * Quckling - Fixed that it was not optional to return another creature. --- Mage.Sets/src/mage/sets/magic2015/Quickling.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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);