mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Merge pull request #661 from Alchus/master
Ixidron no longer turns double-faced cards face-down, as per MCR 711.6
This commit is contained in:
commit
1a95062988
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