diff --git a/Mage/src/mage/abilities/common/ZoneChangeAllTriggeredAbility.java b/Mage/src/mage/abilities/common/ZoneChangeAllTriggeredAbility.java index 3383068261..f50ca1d935 100644 --- a/Mage/src/mage/abilities/common/ZoneChangeAllTriggeredAbility.java +++ b/Mage/src/mage/abilities/common/ZoneChangeAllTriggeredAbility.java @@ -75,7 +75,12 @@ public class ZoneChangeAllTriggeredAbility { public boolean canTarget(MageObject source, Game game) { if (filter instanceof FilterPermanent) { - if (source instanceof Permanent) + if (source instanceof Permanent) { return !filter.match(source, game); + } return true; } if (filter instanceof FilterSpell) { - if (source instanceof Spell) + if (source instanceof Spell) { return !filter.match(source, game); + } return true; } if (filter instanceof FilterCard) { - if (source instanceof Card) + if (source instanceof Card) { return !filter.match(source, game); + } return true; } if (filter instanceof FilterObject) {