- Fixed mana costs not always coming first in combineCosts.

This commit is contained in:
Sloth
2012-12-03 08:41:01 +00:00
parent cbd59a3241
commit 5be65b6614

View File

@@ -472,7 +472,7 @@ public class CostUtil {
oldManaCost.combineManaCost(newCostMana.toString());
newCostMana.setMana(oldManaCost.toString(false));
} else {
cost2.getCostParts().add(part);
cost2.getCostParts().add(0, part);
}
}
}