* Planar Guide - Fixed handling of exiling and returning the creatures in a not correct way (fixes #4740).

This commit is contained in:
LevelX2 2018-04-10 18:03:48 +02:00
parent 2eeab42cfa
commit 425e68167b

View file

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