* Realm Razer - Fixed that the lands were not returned under owners control.

This commit is contained in:
LevelX2 2016-01-23 11:02:12 +01:00
parent 1dbd3ea41c
commit 9ccebfdff4

View file

@ -124,7 +124,7 @@ class RealmRazerEffect extends OneShotEffect {
if (controller != null) {
ExileZone exZone = game.getExile().getExileZone(source.getSourceId());
if (exZone != null) {
return controller.moveCards(exZone.getCards(game), Zone.BATTLEFIELD, source, game, true, false, false, null);
return controller.moveCards(exZone.getCards(game), Zone.BATTLEFIELD, source, game, true, false, true, null);
}
return true;
}