mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fixed Cauldron's Gift not giving a counter to the creature
This commit is contained in:
parent
6911a2540b
commit
674e24f020
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||||
|
|
Loading…
Reference in a new issue