fixed Watcher for Tomorrow not returning the exiled card to hand

This commit is contained in:
Evan Kranzler 2019-06-03 19:18:02 -04:00
parent fe5f97dc30
commit bf0bbaf877

View file

@ -72,7 +72,7 @@ class WatcherForTomorrowEffect extends OneShotEffect {
if (player == null) {
return false;
}
ExileZone zone = game.getExile().getExileZone(CardUtil.getCardExileZoneId(game, source));
ExileZone zone = game.getExile().getExileZone(CardUtil.getCardExileZoneId(game, source.getSourceId(), true));
if (zone == null) {
return false;
}