From 4f44d29d32498275e8b062d34c48ce3ee40b4ab6 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Thu, 7 Sep 2023 05:51:37 +0400 Subject: [PATCH] Merge fix --- Mage.Sets/src/mage/cards/w/WormfangTurtle.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/w/WormfangTurtle.java b/Mage.Sets/src/mage/cards/w/WormfangTurtle.java index f1912640f3b..a3ca56d6f58 100644 --- a/Mage.Sets/src/mage/cards/w/WormfangTurtle.java +++ b/Mage.Sets/src/mage/cards/w/WormfangTurtle.java @@ -35,8 +35,7 @@ public final class WormfangTurtle extends CardImpl { // When Wormfang Turtle enters the battlefield, exile a land you control. Ability ability1 = new EntersBattlefieldTriggeredAbility(new ExileTargetForSourceEffect(), false); - Target target = new TargetPermanent(StaticFilters.FILTER_CONTROLLED_PERMANENT_A_LAND); - target.setNotTarget(true); + Target target = new TargetPermanent(StaticFilters.FILTER_CONTROLLED_PERMANENT_A_LAND).withNotTarget(true); ability1.addTarget(target); this.addAbility(ability1);