This commit is contained in:
Jeff 2017-06-28 16:55:24 -05:00
parent d58a438ba9
commit 831985a7bd

View file

@ -82,6 +82,7 @@ public class PopulateEffect extends OneShotEffect {
Player player = game.getPlayer(source.getControllerId());
if (player != null) {
Target target = new TargetPermanent(filter);
target.setNotTarget(true);
if (target.canChoose(source.getControllerId(), game)) {
player.choose(Outcome.Copy, target, source.getSourceId(), game);
Permanent tokenToCopy = game.getPermanent(target.getFirstTarget());