mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08: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…
Add table
Add a link
Reference in a new issue