mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
No longer turns double-faced cards face-down, as per MCR 711.:
A double-faced permanent always has the status "face up" (see rule 110.6). Double-faced permanents can‘t be turned face down. If a spell or ability tries to turn a double-faced permanent face down, nothing happens.
This commit is contained in:
parent
344641cb45
commit
34b96cfb78
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ public class BecomesFaceDownCreatureAllEffect extends ContinuousEffectImpl imple
|
|||
public void init(Ability source, Game game) {
|
||||
super.init(source, game);
|
||||
for (Permanent perm: game.getBattlefield().getActivePermanents(filter, source.getControllerId(), source.getSourceId(), game)) {
|
||||
if (!perm.isFaceDown()) {
|
||||
if (!perm.isFaceDown() && !perm.canTransform()) {
|
||||
affectedObjectList.add(new MageObjectReference(perm));
|
||||
perm.setFaceDown(true);
|
||||
// check for Morph
|
||||
|
|
Loading…
Reference in a new issue