mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +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;
|
||||
}
|
||||
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;
|
||||
}
|
||||
Permanent permanent = game.getPermanent(card.getId());
|
||||
|
|
Loading…
Reference in a new issue