From 0ff6dc1a5947405f75b393b72b51f4b00ea82c8f Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Thu, 31 Dec 2015 16:13:02 +0100 Subject: [PATCH] * Fold into AEther- Fixed that the card could not be put onto battlefield from hand. --- Mage.Sets/src/mage/sets/fifthdawn/FoldIntoAEther.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/sets/fifthdawn/FoldIntoAEther.java b/Mage.Sets/src/mage/sets/fifthdawn/FoldIntoAEther.java index c9022050cad..dede03eac75 100644 --- a/Mage.Sets/src/mage/sets/fifthdawn/FoldIntoAEther.java +++ b/Mage.Sets/src/mage/sets/fifthdawn/FoldIntoAEther.java @@ -95,7 +95,7 @@ class FoldIntoAEtherEffect extends OneShotEffect { if (game.getStack().counter(targetId, source.getSourceId(), game)) { TargetCardInHand target = new TargetCardInHand(new FilterCreatureCard()); if (spellController != null - && target.canChoose(source.getSourceId(), source.getSourceId(), game) + && target.canChoose(source.getSourceId(), spellController.getId(), game) && spellController.chooseUse(Outcome.Neutral, "Put a creature card from your hand in play?", source, game) && spellController.choose(Outcome.PutCreatureInPlay, target, source.getSourceId(), game)) { Card card = game.getCard(target.getFirstTarget());