fix extracosts on cumulative upcost

since Manacost::copy copies, extracost, if this is enabled, extracost is
doubled. tested with Aboroth
This commit is contained in:
Anthony Calosa
2016-08-12 07:43:39 +08:00
parent 7e14b2fc5a
commit a378e3a72d

View File

@@ -6580,7 +6580,7 @@ AUpkeep::AUpkeep(GameObserver* observer, int _id, MTGCardInstance * card, MTGAbi
{
backupMana = NEW ManaCost();
backupMana->copy(this->getCost());
backupMana->addExtraCosts(this->getCost()->extraCosts);
//backupMana->addExtraCosts(this->getCost()->extraCosts);
}
}