diff --git a/Mage.Sets/src/mage/cards/m/MysticSubdual.java b/Mage.Sets/src/mage/cards/m/MysticSubdual.java index 5313ffb6169..43b0fce4634 100644 --- a/Mage.Sets/src/mage/cards/m/MysticSubdual.java +++ b/Mage.Sets/src/mage/cards/m/MysticSubdual.java @@ -73,11 +73,11 @@ class MysticSubdualEffect extends ContinuousEffectImpl { public boolean apply(Game game, Ability source) { Permanent permanent = game.getPermanent(source.getSourceId()); if (permanent == null) { - return true; + return false; } Permanent creature = game.getPermanent(permanent.getAttachedTo()); if (creature == null) { - return true; + return false; } creature.removeAllAbilities(source.getSourceId(), game); return true;