mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
* Early Harvest - Fixed that it wrongly only untaps non basic lands instead of basic lands.
This commit is contained in:
parent
382cee7629
commit
9f935a42db
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ class UntapAllLandsTargetEffect extends OneShotEffect {
|
|||
|
||||
private static final FilterLandPermanent filter = new FilterLandPermanent();
|
||||
static {
|
||||
filter.add(Predicates.not(new SupertypePredicate("Basic")));
|
||||
filter.add(new SupertypePredicate("Basic"));
|
||||
}
|
||||
|
||||
public UntapAllLandsTargetEffect() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue