- Fixed the description of the reveal cost.

- Little fix in the description of additional costs of spells.
This commit is contained in:
Sloth
2011-08-28 13:32:16 +00:00
parent a0b46e67e5
commit 300748d48a
2 changed files with 4 additions and 2 deletions

View File

@@ -390,8 +390,8 @@ public class Cost {
if (part instanceof CostMana)
continue;
if (!first)
cost.append("and ");
cost.append(part.toString()).append(" ");
cost.append(" and ");
cost.append(part.toString());
first = false;
}

View File

@@ -127,6 +127,8 @@ public class CostReveal extends CostPartWithList {
sb.append(Cost.convertAmountTypeToWords(i, amount, desc.toString()));
}
sb.append(" from your hand");
return sb.toString();
}