diff --git a/Mage.Sets/src/mage/sets/oathofthegatewatch/CorpseChurn.java b/Mage.Sets/src/mage/sets/oathofthegatewatch/CorpseChurn.java index f11ceb12dc..ffa9be6217 100644 --- a/Mage.Sets/src/mage/sets/oathofthegatewatch/CorpseChurn.java +++ b/Mage.Sets/src/mage/sets/oathofthegatewatch/CorpseChurn.java @@ -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); } }