This commit is contained in:
jeffwadsworth 2020-08-31 15:38:46 -05:00
parent 668a21fc18
commit 34cece1107

View file

@ -97,10 +97,11 @@ 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.match(source, game)) {
return (!source.isInstantOrSorcery());
}
}