From abf18027b88d30f97dcff2f1e3be3d399d96268c Mon Sep 17 00:00:00 2001
From: LevelX2 <ludwig.hirth@online.de>
Date: Tue, 24 Mar 2015 17:01:53 +0100
Subject: [PATCH] * Liliana of the Veil - Fixed that for the third ability
 permanents with hexproof could not be selected.

---
 Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java b/Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java
index e78a2a4996..bf8d01f10a 100644
--- a/Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java
+++ b/Mage.Sets/src/mage/sets/innistrad/LilianaOfTheVeil.java
@@ -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)) {