* Corpse Churn - Fixed that the selected card was not moved to hand.

This commit is contained in:
LevelX2 2016-01-12 12:41:17 +01:00
parent 552d7f1db7
commit 71e2d7358c

View file

@ -95,7 +95,7 @@ class CorpseChurnEffect extends OneShotEffect {
&& controller.chooseUse(outcome, "Return a creature card from your graveyard to hand?", source, game)
&& controller.choose(Outcome.ReturnToHand, target, source.getSourceId(), game)) {
Card card = game.getCard(target.getFirstTarget());
if (card == null) {
if (card != null) {
controller.moveCards(card, Zone.HAND, source, game);
}
}