forked from External/mage
[FRF] Fixed ETB replacement and triggered abilities for manifested cards.
This commit is contained in:
parent
5b04f40a66
commit
79ceae999a
5 changed files with 88 additions and 2 deletions
|
|
@ -410,6 +410,13 @@ public class ContinuousEffects implements Serializable {
|
|||
exists = permanent.getCard().getAbilities().contains(ability);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (object instanceof PermanentCard) {
|
||||
PermanentCard permanent = (PermanentCard)object;
|
||||
if (permanent.isFaceDown() && !ability.getWorksFaceDown()) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return exists;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue