* Early Harvest - Fixed that it wrongly only untaps non basic lands instead of basic lands.

This commit is contained in:
LevelX2 2015-05-25 19:32:11 +02:00
parent 382cee7629
commit 9f935a42db

View file

@ -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() {