From db2ac51e020642bf8f89621c3120383d6ff520e2 Mon Sep 17 00:00:00 2001 From: Eric Nelson <1895280+Grath@users.noreply.github.com> Date: Fri, 9 Oct 2020 21:53:46 -0400 Subject: [PATCH] Fix Estrid the Masked's filters At some point a typographical error snuck into the code; this caused Estrid's ultimate ability to no longer function properly with auras. It instead put all auras into play at the same time as your non-aura enchantments, causing you to be forced to attach your auras to targets already in play. --- Mage.Sets/src/mage/cards/e/EstridTheMasked.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/e/EstridTheMasked.java b/Mage.Sets/src/mage/cards/e/EstridTheMasked.java index 3d71d9c6a9..68ccc77bc9 100644 --- a/Mage.Sets/src/mage/cards/e/EstridTheMasked.java +++ b/Mage.Sets/src/mage/cards/e/EstridTheMasked.java @@ -123,7 +123,7 @@ class EstridTheMaskedGraveyardEffect extends OneShotEffect { static { filter.add(Predicates.not(SubType.AURA.getPredicate())); - filter.add(SubType.AURA.getPredicate()); + filter2.add(SubType.AURA.getPredicate()); } public EstridTheMaskedGraveyardEffect() {