Fixed Estrid's Invocation (#9932)

This commit is contained in:
Alexander Novotny 2023-01-31 07:31:31 -08:00 committed by GitHub
parent 9bbf7149e3
commit 97b2ab0b26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,7 +89,7 @@ class EstridsInvocationEffect extends OneShotEffect {
return false;
}
Card card = permanent.getMainCard();
player.moveCards(card, Zone.EXILED, source, game);
player.moveCards(permanent, Zone.EXILED, source, game);
player.moveCards(card, Zone.BATTLEFIELD, source, game, false, false, true, null);
return true;
}