mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
[NEC] fixed Aerial Surveyor not triggering (fixes #8767)
This commit is contained in:
parent
9af399eadb
commit
8974f5bfde
1 changed files with 2 additions and 2 deletions
|
@ -79,10 +79,10 @@ enum AerialSurveyorCondition implements Condition {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
return game.getBattlefield().count(
|
||||
filter, source.getControllerId(), source.getSourceId(), game
|
||||
filter, source.getSourceId(), source.getControllerId(), game
|
||||
) > game.getBattlefield().count(
|
||||
StaticFilters.FILTER_CONTROLLED_PERMANENT_LAND,
|
||||
source.getControllerId(), source.getSourceId(), game
|
||||
source.getSourceId(), source.getControllerId(), game
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue