fixed Cauldron's Gift not giving a counter to the creature

This commit is contained in:
Evan Kranzler 2019-09-22 13:11:10 -04:00
parent 6911a2540b
commit 674e24f020

View file

@ -80,7 +80,7 @@ class CauldronsGiftEffect extends OneShotEffect {
return false; return false;
} }
Card card = game.getCard(target.getFirstTarget()); Card card = game.getCard(target.getFirstTarget());
if (card == null || player.moveCards(card, Zone.BATTLEFIELD, source, game)) { if (card == null || !player.moveCards(card, Zone.BATTLEFIELD, source, game)) {
return false; return false;
} }
Permanent permanent = game.getPermanent(card.getId()); Permanent permanent = game.getPermanent(card.getId());