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.
This commit is contained in:
Eric Nelson 2020-06-07 17:52:38 -04:00 committed by GitHub
parent 8369184cac
commit bc9da1d11f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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