diff --git a/src/Mods/SecExp/js/Unit.js b/src/Mods/SecExp/js/Unit.js
index 26a146b8ce16ab46eebd75397855e80be2282302..f4ac65b3bc52622d07e5120a178ba63e5af29ead 100644
--- a/src/Mods/SecExp/js/Unit.js
+++ b/src/Mods/SecExp/js/Unit.js
@@ -157,7 +157,7 @@ App.SecExp.unit = (function() {
 		}
 		input.cyber = input.cyber || 0;
 		input.commissars = input.commissars || 0;
-		input.maxTroops = Math.min(0, input.maxTroops);
+		input.maxTroops = input.maxTroops || 30;
 		input.troops = Math.clamp(input.troops, 0, input.maxTroops);
 	}
 
diff --git a/src/Mods/SpecialForce/SpecialForce.js b/src/Mods/SpecialForce/SpecialForce.js
index 67ce6ff108cff48481dd483b93776a7c9eb26936..6b08d91e9ba1a25b2843bcecd82cd852e4e3ff22 100644
--- a/src/Mods/SpecialForce/SpecialForce.js
+++ b/src/Mods/SpecialForce/SpecialForce.js
@@ -1453,7 +1453,7 @@ App.SF.AAR = function(endWeekCall = 1) {
 				r += `<span class='red'>barely enough to cover expenses.</span> More growth will be needed to ensure profitability, <span class='yellow'>hopefully purchasing more upgrades will help.</span>`;
 				r += ` Per the estimates that ${App.SF.SFC()} provides, an additional <span class='yellowgreen'>${cashFormat(profit)}</span> is required for sufficient cover.`;
 			}
-			r + = `An difference of ${profit/V.SF.lastWeeksProfit}% since last week`;
+			r += `An difference of ${profit/V.SF.lastWeeksProfit}% since last week`;
 			V.SF.lastWeeksProfit = profit;
 
 			r += ` ${capSF} managed to recruit ${FNG} new soldiers this week, and your reputation has <span class='green'>increased through the improvement of trade security.</span>`;