1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-30 01:03:57 -09:00

fixed Neyith of the Dire Hunt not triggering off of blocks

This commit is contained in:
Evan Kranzler 2020-07-01 21:08:59 -04:00
parent bda0d6fba0
commit d3fad6c46e

View file

@ -95,8 +95,9 @@ class NeyithOfTheDireHuntTriggeredAbility extends TriggeredAbilityImpl {
.anyMatch(this.getControllerId()::equals);
case DECLARED_BLOCKERS:
return game.getCombat()
.getBlockingGroups()
.getGroups()
.stream()
.filter(CombatGroup::getBlocked)
.map(CombatGroup::getAttackers)
.flatMap(Collection::stream)
.map(game::getControllerId)