[NEC] fixed Aerial Surveyor not triggering (fixes #8767)

This commit is contained in:
Evan Kranzler 2022-03-14 09:49:34 -04:00
parent 9af399eadb
commit 8974f5bfde

View file

@ -79,10 +79,10 @@ enum AerialSurveyorCondition implements Condition {
@Override @Override
public boolean apply(Game game, Ability source) { public boolean apply(Game game, Ability source) {
return game.getBattlefield().count( return game.getBattlefield().count(
filter, source.getControllerId(), source.getSourceId(), game filter, source.getSourceId(), source.getControllerId(), game
) > game.getBattlefield().count( ) > game.getBattlefield().count(
StaticFilters.FILTER_CONTROLLED_PERMANENT_LAND, StaticFilters.FILTER_CONTROLLED_PERMANENT_LAND,
source.getControllerId(), source.getSourceId(), game source.getSourceId(), source.getControllerId(), game
); );
} }
} }