Fix Sky Swallower (#10542)

* Static filter for another controlled permanent

* Fix Sky Swallower
This commit is contained in:
xenohedron 2023-06-29 23:38:59 -04:00 committed by GitHub
parent 83c1e4395a
commit f2378a5b3d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 32 additions and 55 deletions

View file

@ -371,6 +371,13 @@ public final class StaticFilters {
FILTER_CONTROLLED_A_PERMANENT.setLockedFilter(true);
}
public static final FilterControlledPermanent FILTER_CONTROLLED_ANOTHER_PERMANENT = new FilterControlledPermanent("another target permanent you control");
static {
FILTER_CONTROLLED_ANOTHER_PERMANENT.add(AnotherPredicate.instance);
FILTER_CONTROLLED_ANOTHER_PERMANENT.setLockedFilter(true);
}
public static final FilterControlledPermanent FILTER_CONTROLLED_PERMANENTS = new FilterControlledPermanent("permanents you control");
static {