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

View file

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