This commit is contained in:
jeffwadsworth 2020-08-11 21:56:49 -05:00
parent f0149c6a19
commit 36468044f4
2 changed files with 8 additions and 1 deletions

View file

@ -97,6 +97,12 @@ public class ProtectionAbility extends StaticAbility {
return true;
}
}
// Emrakul, the Aeons Torn
if (filter instanceof FilterStackObject) {
if (source instanceof Spell) {
return !filter.match(source, game);
}
}
if (filter instanceof FilterObject) {
return !filter.match(source, game);