Skip to content

Commit

Permalink
* Vesuvan Shapeshifter - Fixed that creature with hexproof could not …
Browse files Browse the repository at this point in the history
…be selected to copy.
  • Loading branch information
LevelX2 committed Aug 28, 2020
1 parent 83ac7f7 commit c47bb34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mage.Sets/src/mage/cards/v/VesuvanShapeshifter.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public boolean apply(Game game, Ability source) {
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());
Expand Down

0 comments on commit c47bb34

Please sign in to comment.