diff --git a/src/Mods/SecExp/buildings/secBarracks.js b/src/Mods/SecExp/buildings/secBarracks.js index 8741fa04d33d0bf12c486420162b364e3be34f8c..7c11ab56fe79b9e73d9650ec841fb3f7a6738135 100644 --- a/src/Mods/SecExp/buildings/secBarracks.js +++ b/src/Mods/SecExp/buildings/secBarracks.js @@ -95,11 +95,11 @@ App.Mods.SecExp.barracks = (function() { if (reasons.length > 0 || sectionSF) { const capSF = capFirstChar(V.SF.Lower || "the special force"); if (reasons.length > 0) { - App.UI.DOM.appendNewElement("div", node, `The Colonel says that ${capSF} may be able to provide assistance if; ${toSentence(reasons)}.`); + App.UI.DOM.appendNewElement("div", node, `The Colonel says that ${capSF} may be able to provide assistance if ${toSentence(reasons)}.`); } cost = Math.trunc( (750000 * (1.15 + (App.Mods.SF.upgrades.total() / 1000)) * (1.15 + (V.SF.Squad.Firebase / 10))) * App.Mods.SF.env() ); if (sectionSF) { - node.append(App.UI.DOM.link(`${capSF} will provide the security force their own section in the Firebase.`, () => { + node.append(App.UI.DOM.link(`${capSF} will provide the security force their own section in the Firebase. `, () => { V.SecExp.sectionInFirebase = 1; cashX(-cost, "specialForcesCap"); App.UI.reload();