mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fixed Cavalier of Thorns putting a land onto the battlefield tapped
This commit is contained in:
parent
d09e93a91b
commit
e77f2572fa
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ class CavalierOfThornsEffect extends OneShotEffect {
|
|||
Card card = cards.get(target.getFirstTarget(), game);
|
||||
if (card != null) {
|
||||
cards.remove(card);
|
||||
controller.moveCards(card, Zone.BATTLEFIELD, source, game, true, false, true, null);
|
||||
controller.moveCards(card, Zone.BATTLEFIELD, source, game);
|
||||
}
|
||||
}
|
||||
controller.moveCards(cards, Zone.GRAVEYARD, source, game);
|
||||
|
|
Loading…
Reference in a new issue