diff --git a/src/Mods/SecExp/buildings/secBarracks.tw b/src/Mods/SecExp/buildings/secBarracks.tw
index 391bb50d16c0202b891bf4bfb57f9fa6c142fce0..e1242f9f54953d0dbb00124709f4f7743e777b19 100644
--- a/src/Mods/SecExp/buildings/secBarracks.tw
+++ b/src/Mods/SecExp/buildings/secBarracks.tw
@@ -52,10 +52,11 @@ While this a sore sight for many citizens of $arcologies[0].name, the barracks s
 	<br>//Costs <<print cashFormat((5000 * ($SecExp.buildings.barracks.size + 1))*$upgradeMultiplierArcology)>> and will increase the maximum number of units by 2.//
 <<else>>
 	<<if $SF.Toggle && $SF.Active >= 1>> 
+		<<set _capSF = capFirstChar($SF.Lower || "the special force")>>
 		<<set _reasons = [], _cost = Math.ceil((750000*(1.15+(App.SF.upgrades.total()/1000))*(1.15+($SF.Squad.Firebase/10)))*App.SF.env())>>
-		<br> <<= App.SF.Caps()>> might be able to provide assistance.
+		<br> _capSF might be able to provide assistance.
 		<<if $SF.Squad.Firebase > 5 && $SecExp.edicts.SFSupportLevel >= 4 && App.SecExp.battle.maxUnits() === 18 && App.SecExp.battle.deploySpeed() <= 10>>
-			<br><<= App.SF.Caps()>> [[will provide the security force their own section in the Firebase.|secBarracks][$sectionInFirebase = 1, cashX(-_cost, "specialForcesCap")]]
+			<br>_capSF [[will provide the security force their own section in the Firebase.|secBarracks][$sectionInFirebase = 1, cashX(-_cost, "specialForcesCap")]]
 			@@.red;<<print cashFormat(_cost)>>@@
 		<</if>>
 		<<if $SF.Squad.Firebase < 5>>
diff --git a/src/Mods/SecExp/js/Unit.js b/src/Mods/SecExp/js/Unit.js
index 53dd19d9d2582b52347b8db6c18dccc19796b466..fc5ca48a7ab40e9bab7fbd0e4cc11828399d4966 100644
--- a/src/Mods/SecExp/js/Unit.js
+++ b/src/Mods/SecExp/js/Unit.js
@@ -1077,7 +1077,7 @@ App.SecExp.describeUnit = (function() {
 					r += `Medical squad attached. `;
 				}
 				if (V.SF.Toggle && V.SF.Active >= 1 && jsDef(input.SF) && input.SF > 0) {
-					r += `${App.SF.Caps()} "advisors" attached. `;
+					r += `${capFirstChar(V.SF.Lower || "the special force")} "advisors" attached. `;
 				}
 			}
 		}
diff --git a/src/Mods/SpecialForce/SpecialForce.js b/src/Mods/SpecialForce/SpecialForce.js
index bc640fc431b54879bbe47af9872ef24cec2742b2..a811bbf36909dc4fcd90b8dca89771beccce1f54 100644
--- a/src/Mods/SpecialForce/SpecialForce.js
+++ b/src/Mods/SpecialForce/SpecialForce.js
@@ -2559,7 +2559,8 @@ App.SF.Interactions = function() {
 	let choice = ``,
 		time = ``;
 	const
-		C = V.SF.Colonel;
+		C = V.SF.Colonel,
+		capSF = capFirstChar(V.SF.Lower || "the special force");
 	if (V.SF.Gift > 0) {
 		if (V.SF.Gift === 1) {
 			choice += `${capSF} is turning over spare capital in tribute this week. `;
diff --git a/src/npc/descriptions/longSlave.js b/src/npc/descriptions/longSlave.js
index 14a07ab90df678f5796094575fedee98d6efad74..6f0642594abc0747dd0b3644ccb1d63eda8ac320 100644
--- a/src/npc/descriptions/longSlave.js
+++ b/src/npc/descriptions/longSlave.js
@@ -193,17 +193,17 @@ App.Desc.longSlave = function(slave = V.activeSlave, {market = 0, eventDescripti
 	r.push(App.Desc.ageAndHealth(slave));
 	$(p).append(r.join(" "));
 
-	r = [];
+	r = []; const clinicNameCaps = capFirstChar(V.clinicName);
 	if (!market) {
 		if (V.clinic !== 0 && V.clinicUpgradeScanner === 1) {
 			if (slave.chem > 15) {
-				$(p).append(`${V.clinicNameCaps}'s scanners score long term carcinogenic buildup in ${his} body at `);
+				$(p).append(`${clinicNameCaps}'s scanners score long term carcinogenic buildup in ${his} body at `);
 				span = document.createElement('span');
 				span.className = "cyan";
 				span.textContent = `${Math.ceil(slave.chem / 10)}.`;
 				p.append(span);
 			} else {
-				p.append(`${V.clinicNameCaps}'s scanners confirm that ${he} has good prospects for long term health. `);
+				p.append(`${clinicNameCaps}'s scanners confirm that ${he} has good prospects for long term health. `);
 			}
 		}