refactored TokenPredicate to contain its own inverse

This commit is contained in:
Evan Kranzler 2021-08-20 09:33:38 -04:00
parent cb5d873fea
commit bdeb0dde66
180 changed files with 196 additions and 310 deletions

View file

@ -33,7 +33,7 @@ public class PopulateEffect extends OneShotEffect {
private static final FilterPermanent filter = new FilterCreaturePermanent("creature token for populate");
static {
filter.add(TokenPredicate.instance);
filter.add(TokenPredicate.TRUE);
filter.add(TargetController.YOU.getControllerPredicate());
}