mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
AttacksWithCreaturesTriggeredAbility - Fixed incorrect comparison to minAttackers (fixes #8228)
This commit is contained in:
parent
bccf56a988
commit
187e0736a0
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ public class AttacksWithCreaturesTriggeredAbility extends TriggeredAbilityImpl {
|
|||
.stream()
|
||||
.map(game::getPermanent)
|
||||
.filter(permanent -> filter.match(permanent, sourceId, controllerId, game))
|
||||
.mapToInt(x -> 1).sum() > minAttackers;
|
||||
.mapToInt(x -> 1).sum() >= minAttackers;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue