Fixed Limited Resources to be counting only its controller lands. Fixes #6409

This commit is contained in:
18ths 2020-07-16 17:45:34 +02:00
parent e149e9ef95
commit 9a8526793d

View file

@ -41,7 +41,8 @@ public final class LimitedResources extends CardImpl {
new CantPlayLandEffect(),
new PermanentsOnTheBattlefieldCondition(
new FilterLandPermanent(),
ComparisonType.MORE_THAN, 9))));
ComparisonType.MORE_THAN, 9,
false))));
}