From ad26810281b83ca6b8574ea8e5eb22e34baac1e9 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Fri, 17 Jan 2025 20:34:19 +0400 Subject: [PATCH] typo fix --- Mage.Sets/src/mage/cards/m/MysticSubdual.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;