mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
* Corpse Churn - Fixed that the selected card was not moved to hand.
This commit is contained in:
parent
552d7f1db7
commit
71e2d7358c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue