From 60f761e2506bb6f4697cf8f8a9afa4cd9b9c1a0c Mon Sep 17 00:00:00 2001 From: Jeff Wadsworth Date: Tue, 28 Nov 2023 17:21:26 -0600 Subject: [PATCH] Little target update to Return to Dust --- Mage.Sets/src/mage/cards/r/ReturnToDust.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/r/ReturnToDust.java b/Mage.Sets/src/mage/cards/r/ReturnToDust.java index eeece3b5772..904bb78b62a 100644 --- a/Mage.Sets/src/mage/cards/r/ReturnToDust.java +++ b/Mage.Sets/src/mage/cards/r/ReturnToDust.java @@ -32,7 +32,7 @@ public final class ReturnToDust extends CardImpl { new ConditionalOneShotEffect(new ReturnToDustConditionalExileEffect(), ControllerMainPhaseCondition.instance); returnToDustConditionalExileEffect.setText("If you cast this spell during your main phase, you may exile up to one other target artifact or enchantment"); this.getSpellAbility().addEffect(returnToDustConditionalExileEffect); - this.getSpellAbility().addTarget(new TargetPermanent(0, 2, StaticFilters.FILTER_PERMANENT_ARTIFACT_OR_ENCHANTMENT)); + this.getSpellAbility().addTarget(new TargetPermanent(1, 2, StaticFilters.FILTER_PERMANENT_ARTIFACT_OR_ENCHANTMENT)); // Two effects are needed to handle cards like Ranar the Ever-Watchful. Rule 608.2e }