mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
Resolve "Morph X costs - X is not being remembered"
This commit is contained in:
committed by
Michael Kamensky
parent
5d8b701f55
commit
4a11157019
@@ -82,7 +82,7 @@ public class HumanPlay {
|
||||
}
|
||||
|
||||
if (flippedToCast && !castFaceDown) {
|
||||
source.turnFaceUp(false, false);
|
||||
source.forceTurnFaceUp();
|
||||
}
|
||||
|
||||
if (sa.getApi() == ApiType.Charm && !sa.isWrapper()) {
|
||||
|
||||
@@ -103,7 +103,7 @@ public class HumanPlaySpellAbility {
|
||||
// This is should happen earlier, before the Modal spell is chosen
|
||||
// Turn face-down card face up (except case of morph spell)
|
||||
if (ability.isSpell() && !ability.isCastFaceDown() && fromState == CardStateName.FaceDown) {
|
||||
c.turnFaceUp();
|
||||
c.turnFaceUp(null);
|
||||
}
|
||||
ability.setHostCard(game.getAction().moveToStack(c, ability));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user