forked from External/mage
Fixed Morph handling, fixed that face down cards stay face down after zone change.
This commit is contained in:
parent
c888957fa0
commit
f137f9c49c
9 changed files with 59 additions and 7 deletions
|
|
@ -451,6 +451,16 @@ public class StackAbility implements StackObject, Ability {
|
|||
public void setCostModificationActive(boolean active) {
|
||||
throw new UnsupportedOperationException("Not supported. Only neede for flashbacked spells");
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean getWorksFaceDown() {
|
||||
return this.ability.getWorksFaceDown();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setWorksFaceDown(boolean worksFaceDown) {
|
||||
this.ability.setWorksFaceDown(worksFaceDown);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue