mirror of
https://github.com/correl/mage.git
synced 2025-01-13 11:01:58 +00:00
* Tooth and Nail - Fixed that second mode did not put the selected creature cards to battlefield.
This commit is contained in:
parent
c9cb53101d
commit
da47f41682
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ class ToothAndNailPutCreatureOnBattlefieldEffect extends OneShotEffect {
|
|||
|
||||
TargetCardInHand target = new TargetCardInHand(0, 2, new FilterCreatureCard("creature cards"));
|
||||
if (controller.choose(Outcome.PutCreatureInPlay, target, source.getSourceId(), game)) {
|
||||
return controller.moveCards(new CardsImpl(getTargetPointer().getTargets(game, source)).getCards(game),
|
||||
return controller.moveCards(new CardsImpl(target.getTargets()).getCards(game),
|
||||
Zone.BATTLEFIELD, source, game, true, false, false, null);
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue