mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- This fix adds the trailing space character to the PrecostDesc and the CostDesc.
This commit is contained in:
@@ -351,9 +351,9 @@ public class AbilityFactory {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
|
||||
if (mapParams.containsKey("PrecostDesc"))
|
||||
sb.append(mapParams.get("PrecostDesc"));
|
||||
sb.append(mapParams.get("PrecostDesc")).append(" ");
|
||||
if (mapParams.containsKey("CostDesc"))
|
||||
sb.append(mapParams.get("CostDesc"));
|
||||
sb.append(mapParams.get("CostDesc")).append(" ");
|
||||
else sb.append(abCost.toString());
|
||||
|
||||
sb.append(mapParams.get("SpellDescription"));
|
||||
|
||||
Reference in New Issue
Block a user