From 7844a6872a359e9ccd3067cce29b14e1ea525abf Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 22 Aug 2021 21:17:46 -0400 Subject: [PATCH] punc fix --- src/Corporation/manageCorporation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Corporation/manageCorporation.js b/src/Corporation/manageCorporation.js index 28cf5c8ee1e..1dc7d2476b6 100644 --- a/src/Corporation/manageCorporation.js +++ b/src/Corporation/manageCorporation.js @@ -241,7 +241,7 @@ App.Corporate.manage = function() { /* Expanding the division*/ let depExpandCost = division.sizeCost * 1000; - addDiv(frag, "Expanding the division costs ", App.UI.DOM.makeElement("span", cashFormat(depExpandCost), ["cash", "dec"]), " Downsizing recoups 80% of the investment; slaves will be sold at the going rate."); + addDiv(frag, "Expanding the division costs ", App.UI.DOM.makeElement("span", `${cashFormat(depExpandCost)}.`, ["cash", "dec"]), " Downsizing recoups 80% of the investment; slaves will be sold at the going rate."); let buyDevArray = [ {'name': 'Expand Division', 'count': 1}, -- GitLab