mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
* Fixed that continuous effects of face down creatures were applied.
This commit is contained in:
parent
8ba2136b0e
commit
dbbbbc0279
2 changed files with 37 additions and 1 deletions
|
|
@ -797,6 +797,10 @@ public abstract class AbilityImpl implements Ability {
|
|||
if (!found) {
|
||||
return false;
|
||||
}
|
||||
} else if (object instanceof PermanentCard) {
|
||||
if (((PermanentCard)object).isFaceDown()&& !this.getWorksFaceDown()) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// check against current state
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue