mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 11:02:00 -08:00
* Fold into AEther- Fixed that the card could not be put onto battlefield from hand.
This commit is contained in:
parent
35c672fa7a
commit
0ff6dc1a59
1 changed files with 1 additions and 1 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue