mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Fixed wrong target zone.
This commit is contained in:
parent
2da4fdf72a
commit
4d8263ff82
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class ReturnExiledPermanentsEffect extends OneShotEffect {
|
|||
if (exileZone != null) {
|
||||
ExileZone exile = game.getExile().getExileZone(exileZone);
|
||||
if (exile != null) {
|
||||
controller.moveCards(new LinkedHashSet<>(exile.getCards(game)), Zone.EXILED, source, game, false, false, true, null);
|
||||
controller.moveCards(new LinkedHashSet<>(exile.getCards(game)), Zone.BATTLEFIELD, source, game, false, false, true, null);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue