mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Vesuvan Shapeshifter - Fixed that creature with hexproof could not be selected to copy.
This commit is contained in:
parent
83ac7f7bc2
commit
c47bb347f1
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ class VesuvanShapeshifterEffect extends OneShotEffect {
|
|||
FilterCreaturePermanent filter = new FilterCreaturePermanent("another creature");
|
||||
filter.add(AnotherPredicate.instance);
|
||||
|
||||
TargetCreaturePermanent target = new TargetCreaturePermanent(0, 1, filter, false);
|
||||
TargetCreaturePermanent target = new TargetCreaturePermanent(0, 1, filter, true);
|
||||
|
||||
if (controller != null && controller.chooseTarget(Outcome.BecomeCreature, target, source, game) && !target.getTargets().isEmpty()) {
|
||||
Permanent copyFromCreature = game.getPermanentOrLKIBattlefield(target.getFirstTarget());
|
||||
|
|
Loading…
Reference in a new issue