Fixes #9925 - Chaos Defiler's ETB is choose, not target. (#9926)

This commit is contained in:
Grath 2023-01-29 21:22:18 -05:00 committed by GitHub
parent 4a86487a86
commit 7c6286df23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -96,7 +96,7 @@ class ChaosDefilerEffect extends OneShotEffect {
"nonland permanent controlled by " + opponent.getName()
);
filter.add(new ControllerIdPredicate(opponentId));
TargetPermanent target = new TargetPermanent(filter);
TargetPermanent target = new TargetPermanent(1, 1, filter, true);
player.choose(outcome, target, source, game);
permanents.add(game.getPermanent(target.getFirstTarget()));
}