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:
parent
bff6c45bc4
commit
abf18027b8
1 changed files with 1 additions and 1 deletions
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue