mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
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:
parent
8369184cac
commit
bc9da1d11f
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue