* Fold into AEther- Fixed that the card could not be put onto battlefield from hand.

This commit is contained in:
LevelX2 2015-12-31 16:13:02 +01:00
parent 35c672fa7a
commit 0ff6dc1a59

View file

@ -95,7 +95,7 @@ class FoldIntoAEtherEffect extends OneShotEffect {
if (game.getStack().counter(targetId, source.getSourceId(), game)) { if (game.getStack().counter(targetId, source.getSourceId(), game)) {
TargetCardInHand target = new TargetCardInHand(new FilterCreatureCard()); TargetCardInHand target = new TargetCardInHand(new FilterCreatureCard());
if (spellController != null 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.chooseUse(Outcome.Neutral, "Put a creature card from your hand in play?", source, game)
&& spellController.choose(Outcome.PutCreatureInPlay, target, source.getSourceId(), game)) { && spellController.choose(Outcome.PutCreatureInPlay, target, source.getSourceId(), game)) {
Card card = game.getCard(target.getFirstTarget()); Card card = game.getCard(target.getFirstTarget());