From d3fad6c46ee4bb909474378b4c90b71aaf905336 Mon Sep 17 00:00:00 2001
From: Evan Kranzler <theelk801@gmail.com>
Date: Wed, 1 Jul 2020 21:08:59 -0400
Subject: [PATCH] fixed Neyith of the Dire Hunt not triggering off of blocks

---
 Mage.Sets/src/mage/cards/n/NeyithOfTheDireHunt.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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)