Merge fix

This commit is contained in:
Oleg Agafonov 2023-09-07 05:51:37 +04:00
parent ddcc6f2197
commit 4f44d29d32

View file

@ -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);