From bc9da1d11ff0f730c6344f35b78c4589e3802d31 Mon Sep 17 00:00:00 2001 From: Eric Nelson <1895280+Grath@users.noreply.github.com> Date: Sun, 7 Jun 2020 17:52:38 -0400 Subject: [PATCH] Text correction on UntapLandsEffect UntapLandsEffect asks you to choose untapped lands to untap; by changing the fillter from "untapped lands" to "tapped lands" (technically you can choose already untapped lands but...) it will now ask you to choose tapped lands to untap. --- .../java/mage/abilities/effects/common/UntapLandsEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/UntapLandsEffect.java b/Mage/src/main/java/mage/abilities/effects/common/UntapLandsEffect.java index f1ab28e27a0..490973b6d04 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/UntapLandsEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/UntapLandsEffect.java @@ -17,7 +17,7 @@ import mage.util.CardUtil; */ public class UntapLandsEffect extends OneShotEffect { - private static final FilterLandPermanent filter = new FilterLandPermanent("untapped lands"); + private static final FilterLandPermanent filter = new FilterLandPermanent("tapped lands"); static { filter.add(TappedPredicate.instance);