mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
fixed Agent of Treachery triggering incorrectly
This commit is contained in:
parent
35e9e5bd74
commit
c8f6e7b360
1 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ enum AgentOfTreacheryCondition implements Condition {
|
||||||
return game.getBattlefield()
|
return game.getBattlefield()
|
||||||
.getAllActivePermanents(source.getControllerId())
|
.getAllActivePermanents(source.getControllerId())
|
||||||
.stream()
|
.stream()
|
||||||
.map(permanent -> !permanent.getOwnerId().equals(source.getControllerId()))
|
.filter(permanent -> !permanent.getOwnerId().equals(source.getControllerId()))
|
||||||
.count() > 2;
|
.count() > 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue