Merge pull request #1336 from RegurKenaid/patch-1

TN fix
This commit is contained in:
LevelX2 2015-10-23 13:07:22 +02:00
commit 3d4ebddbc8

View file

@ -103,7 +103,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(target.getTargets()).getCards(game),
Zone.BATTLEFIELD, source, game, true, false, false, null);
Zone.BATTLEFIELD, source, game, false, false, false, null);
}
return false;
}