* Fixed that morphed permanents (face down) had wrongly the cumulative mana costs of their face-up side instead of 0(fixes #3726).

This commit is contained in:
LevelX2 2017-08-01 12:20:05 +02:00
parent 8483855b2a
commit 1e3f9bffc6
2 changed files with 41 additions and 0 deletions

View file

@ -209,6 +209,9 @@ public class PermanentCard extends PermanentImpl {
// is itself a double-faced card), the converted mana cost of that permanent is 0.
return getCard().getConvertedManaCost();
}
if (faceDown) { // game not neccessary
return getManaCost().convertedManaCost();
}
return super.getConvertedManaCost();
}