diff --git a/Mage.Sets/src/mage/cards/n/NeyithOfTheDireHunt.java b/Mage.Sets/src/mage/cards/n/NeyithOfTheDireHunt.java index 179dd36c89..afd2e9bfa7 100644 --- a/Mage.Sets/src/mage/cards/n/NeyithOfTheDireHunt.java +++ b/Mage.Sets/src/mage/cards/n/NeyithOfTheDireHunt.java @@ -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)