1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-05 09:12:29 -09:00

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

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 CantPlayLandEffect(),
new PermanentsOnTheBattlefieldCondition( new PermanentsOnTheBattlefieldCondition(
new FilterLandPermanent(), new FilterLandPermanent(),
ComparisonType.MORE_THAN, 9)))); ComparisonType.MORE_THAN, 9,
false))));
} }