mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-11 16:26:22 +00:00
- Fixed the description of the reveal cost.
- Little fix in the description of additional costs of spells.
This commit is contained in:
@@ -390,8 +390,8 @@ public class Cost {
|
|||||||
if (part instanceof CostMana)
|
if (part instanceof CostMana)
|
||||||
continue;
|
continue;
|
||||||
if (!first)
|
if (!first)
|
||||||
cost.append("and ");
|
cost.append(" and ");
|
||||||
cost.append(part.toString()).append(" ");
|
cost.append(part.toString());
|
||||||
first = false;
|
first = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -127,6 +127,8 @@ public class CostReveal extends CostPartWithList {
|
|||||||
|
|
||||||
sb.append(Cost.convertAmountTypeToWords(i, amount, desc.toString()));
|
sb.append(Cost.convertAmountTypeToWords(i, amount, desc.toString()));
|
||||||
}
|
}
|
||||||
|
sb.append(" from your hand");
|
||||||
|
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user