mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
- Fixed #7033
This commit is contained in:
parent
668a21fc18
commit
34cece1107
1 changed files with 4 additions and 3 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue