- Fix Ghastly Conscription not calculating the correct Mana Cost for cards it manifests

This commit is contained in:
Sol
2015-02-27 17:02:49 +00:00
parent a9719cbd7d
commit d972a7de36

View File

@@ -412,7 +412,8 @@ public class Card extends GameEntity implements Comparable<Card> {
public Card manifest(Player p) { public Card manifest(Player p) {
// Turn Face Down (even if it's DFC). // Turn Face Down (even if it's DFC).
ManaCost cost = this.getManaCost(); CardState originalCard = this.getState(CardStateName.Original);
ManaCost cost = originalCard.getManaCost();
boolean isCreature = this.isCreature(); boolean isCreature = this.isCreature();