fix Nahiri's Resolve

This commit is contained in:
xenohedron 2023-07-07 01:47:43 -04:00
parent 03c45500b7
commit 08c32682ac

View file

@ -129,7 +129,7 @@ class NahirisResolveReturnEffect extends OneShotEffect {
Player player = game.getPlayer(source.getControllerId());
Cards cards = new CardsImpl(getTargetPointer().getTargets(game, source));
return player != null && !cards.isEmpty() && player.moveCards(
cards.getCards(game), Zone.EXILED, source, game, false,
cards.getCards(game), Zone.BATTLEFIELD, source, game, false,
false, true, null
);
}