mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
* 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:
parent
8483855b2a
commit
1e3f9bffc6
2 changed files with 41 additions and 0 deletions
|
|
@ -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();
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue