mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fixed Limited Resources to be counting only its controller lands. Fixes #6409
This commit is contained in:
parent
e149e9ef95
commit
9a8526793d
1 changed files with 2 additions and 1 deletions
|
@ -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))));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue