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.
This commit is contained in:
Eric Nelson 2020-10-09 21:53:46 -04:00 committed by GitHub
parent 8c7d7f0b77
commit db2ac51e02
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -123,7 +123,7 @@ class EstridTheMaskedGraveyardEffect extends OneShotEffect {
static { static {
filter.add(Predicates.not(SubType.AURA.getPredicate())); filter.add(Predicates.not(SubType.AURA.getPredicate()));
filter.add(SubType.AURA.getPredicate()); filter2.add(SubType.AURA.getPredicate());
} }
public EstridTheMaskedGraveyardEffect() { public EstridTheMaskedGraveyardEffect() {