mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08: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) {
|
public void init(Ability source, Game game) {
|
||||||
super.init(source, game);
|
super.init(source, game);
|
||||||
for (Permanent perm: game.getBattlefield().getActivePermanents(filter, source.getControllerId(), source.getSourceId(), 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));
|
affectedObjectList.add(new MageObjectReference(perm));
|
||||||
perm.setFaceDown(true);
|
perm.setFaceDown(true);
|
||||||
// check for Morph
|
// check for Morph
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue