fixed Cavalier of Thorns putting a land onto the battlefield tapped

This commit is contained in:
Evan Kranzler 2019-06-29 12:45:35 -04:00
parent d09e93a91b
commit e77f2572fa

View file

@ -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);