mirror of
https://github.com/correl/mage.git
synced 2024-12-25 11:11:16 +00:00
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:
parent
8c7d7f0b77
commit
db2ac51e02
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue