[MH2] Implemented Sanctifier en-Vec (#7893)

* [MH2] Implemented Sanctifier en-Vec

* [MH2] Sanctifier en-Vec - Remove unused filter
This commit is contained in:
Daniel Bomar 2021-06-06 17:38:48 -05:00 committed by GitHub
parent 568bfad743
commit df5bf2fa25
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 250 additions and 1 deletions

View file

@ -64,7 +64,7 @@ public class ExileGraveyardAllPlayersEffect extends OneShotEffect {
}
Player player = game.getPlayer(playerId);
if (player != null) {
toExile.addAll(player.getGraveyard());
toExile.addAll(player.getGraveyard().getCards(filter, source.getSourceId(), source.getControllerId(), game));
}
}
controller.moveCards(toExile, Zone.EXILED, source, game);