Cost from ManaCost ctor will behave correctly for manacost that can't be paid (Lotus Bloom)

This commit is contained in:
Maxmtg
2013-04-27 18:39:44 +00:00
parent 1175f255da
commit cb3b1273f2

View File

@@ -104,7 +104,7 @@ public class Cost {
// Parsing Strings
public Cost(ManaCost cost, final boolean bAbility) {
this(cost.toString(), bAbility);
costParts.add(new CostPartMana(cost, null, false));
}
/**