mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
* Planar Guide - Fixed handling of exiling and returning the creatures in a not correct way (fixes #4740).
This commit is contained in:
parent
2eeab42cfa
commit
425e68167b
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class PlanarGuideReturnFromExileEffect extends OneShotEffect {
|
|||
if (controller != null) {
|
||||
ExileZone exile = game.getExile().getExileZone(source.getSourceId());
|
||||
if (exile != null) {
|
||||
controller.moveCards(exile.copy(), Zone.BATTLEFIELD, source, game);
|
||||
controller.moveCards(exile.getCards(game), Zone.BATTLEFIELD, source, game, false, false, true, null);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue