From 39a4e7644e1a41ff0cf6dd000fbb71e87adf1077 Mon Sep 17 00:00:00 2001 From: Mike Cunningham Date: Mon, 7 Apr 2025 00:28:08 -0400 Subject: [PATCH] Removing setText, updating filter --- Mage.Sets/src/mage/cards/a/AggressiveNegotiations.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/a/AggressiveNegotiations.java b/Mage.Sets/src/mage/cards/a/AggressiveNegotiations.java index 24303f4c694..d4563bdb910 100644 --- a/Mage.Sets/src/mage/cards/a/AggressiveNegotiations.java +++ b/Mage.Sets/src/mage/cards/a/AggressiveNegotiations.java @@ -25,8 +25,7 @@ public final class AggressiveNegotiations extends CardImpl { super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{B}"); // Target opponent reveals their hand. You choose a nonland card from it. That player exiles that card. - Effect effect1 = new ExileCardYouChooseTargetOpponentEffect(StaticFilters.FILTER_CARD_NON_LAND); - effect1.setText("Target player reveals their hand. You choose a nonland card from it and exile that card."); + Effect effect1 = new ExileCardYouChooseTargetOpponentEffect(StaticFilters.FILTER_CARD_A_NON_LAND); this.getSpellAbility().addEffect(effect1); this.getSpellAbility().addTarget(new TargetPlayer());