1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-01 09:05:59 -09:00

* Liliana of the Veil - Fixed that for the third ability permanents with hexproof could not be selected.

This commit is contained in:
LevelX2 2015-03-24 17:01:53 +01:00
parent bff6c45bc4
commit abf18027b8

View file

@ -112,7 +112,7 @@ class LilianaOfTheVeilEffect extends OneShotEffect {
Player targetPlayer = game.getPlayer(source.getFirstTarget());
if (player != null && targetPlayer != null) {
int count = game.getBattlefield().countAll(new FilterPermanent(), targetPlayer.getId(), game);
TargetPermanent target = new TargetPermanent(0, count, new FilterPermanent("permanents to put in the first pile"), false);
TargetPermanent target = new TargetPermanent(0, count, new FilterPermanent("permanents to put in the first pile"), true);
List<Permanent> pile1 = new ArrayList<>();
target.setRequired(false);
if (player.choose(Outcome.Neutral, target, source.getSourceId(), game)) {