diff --git a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/MorphTest.java b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/MorphTest.java
index f7ef27362c..b4a15d9b52 100644
--- a/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/MorphTest.java
+++ b/Mage.Tests/src/test/java/org/mage/test/cards/abilities/keywords/MorphTest.java
@@ -778,4 +778,42 @@ public class MorphTest extends CardTestPlayerBase {
 
         Assert.assertTrue("Skip next turn has to be added to TurnMods", currentGame.getState().getTurnMods().size() == 1);
     }
+
+    /**
+     * Permanents that have been morphed have wrongly the converted mana cost of
+     * their face up side, which makes cards such as Fatal Push of Smother
+     * unable to destroy them if their cmc is greater than the one specified on
+     * said cards. Face-down permanents should have a cmc of 0 as per rule
+     * 707.2.
+     */
+    @Test
+    public void testCMCofFaceDownCreature() {
+        /*
+         Pine Walker
+         Creature - Elemental
+         5/5
+         Morph {4}{G} (You may cast this card face down as a 2/2 creature for . Turn it face up any time for its morph cost.)
+         Whenever Pine Walker or another creature you control is turned face up, untap that creature.
+         */
+        addCard(Zone.HAND, playerA, "Pine Walker");
+        addCard(Zone.BATTLEFIELD, playerA, "Forest", 3);
+
+        // Destroy target creature if it has converted mana cost 2 or less.
+        // Revolt - Destroy that creature if it has converted mana cost 4 or less instead if a permanent you controlled left the battlefield this turn.
+        addCard(Zone.HAND, playerB, "Fatal Push"); // Instant {B}
+        addCard(Zone.BATTLEFIELD, playerB, "Swamp", 1);
+
+        castSpell(1, PhaseStep.PRECOMBAT_MAIN, playerA, "Pine Walker");
+        setChoice(playerA, "Yes"); // cast it face down as 2/2 creature
+
+        castSpell(1, PhaseStep.POSTCOMBAT_MAIN, playerB, "Fatal Push");
+
+        setStopAt(1, PhaseStep.END_TURN);
+        execute();
+
+        assertGraveyardCount(playerB, "Fatal Push", 1);
+        assertGraveyardCount(playerA, "Pine Walker", 1);
+        assertPermanentCount(playerA, "", 0);
+
+    }
 }
diff --git a/Mage/src/main/java/mage/game/permanent/PermanentCard.java b/Mage/src/main/java/mage/game/permanent/PermanentCard.java
index 038f4869ea..1e7e10d2dd 100644
--- a/Mage/src/main/java/mage/game/permanent/PermanentCard.java
+++ b/Mage/src/main/java/mage/game/permanent/PermanentCard.java
@@ -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();
 
     }