diff --git a/src/Mods/SecExp/js/buildingsJS.js b/src/Mods/SecExp/js/buildingsJS.js
index 886cb7c17e40be10371834a747bbd6071ea8bcbd..76b52a16408e9b86c220d9763471bd03f171411e 100644
--- a/src/Mods/SecExp/js/buildingsJS.js
+++ b/src/Mods/SecExp/js/buildingsJS.js
@@ -201,8 +201,8 @@ App.SecExp.propHub = (function() {
 		} else if (V.propHub || (V.SecExp.buildings.propHub && Object.entries(V.SecExp.buildings.propHub).length > 0)) {
 			V.SecExp.buildings.propHub = V.SecExp.buildings.propHub || {};
 			V.SecExp.buildings.propHub.upgrades = V.SecExp.buildings.propHub.upgrades || {};
-			V.SecExp.buildings.propHub.recruiterOffice = V.SecExp.buildings.propHub.recruiterOffice || V.SecExp.buildings.propHub.recruiterOffice || V.recruiterOffice || V.recruiterOffice || 0;
-			delete V.SecExp.buildings.propHub.recruiterOffice;
+			V.SecExp.buildings.propHub.recruiterOffice = V.SecExp.buildings.propHub.recruiterOffice || V.SecExp.buildings.propHub.recuriterOffice || V.recuriterOffice || V.RecuriterOffice || 0;
+			delete V.SecExp.buildings.propHub.recuriterOffice;
 
 			V.SecExp.buildings.propHub.upgrades.campaign = V.SecExp.buildings.propHub.upgrades.campaign || V.SecExp.buildings.propHub.campaign || V.propCampaign || 0;
 			delete V.SecExp.buildings.propHub.campaign;
diff --git a/src/Mods/SecExp/js/secExp.js b/src/Mods/SecExp/js/secExp.js
index 00b5af0a15455e9679c13ccabaf4d27f983c7f57..8bd6a0d9ae605029d5a3dad95f0942a18ff1b231 100644
--- a/src/Mods/SecExp/js/secExp.js
+++ b/src/Mods/SecExp/js/secExp.js
@@ -30,7 +30,7 @@ App.SecExp.SF_effect = function(report, section = '') {
  */
 App.SecExp.propagandaEffects = function(focus) {
 	let t = ``, increase = 0;
-	if (V.SecExp.buildings.propHub && V.SecExp.buildings.propHub.upgrades.campaign >= 1 && V.SecExp.buildings.propHub.focus === focus) {
+	if (V.secExpEnabled > 0 && V.SecExp.buildings.propHub && V.SecExp.buildings.propHub.upgrades.campaign >= 1 && V.SecExp.buildings.propHub.focus === focus) {
 		let campaign, modifier;
 		const forcedViewing = V.SecExp.edicts.propCampaignBoost === 1;
 		const noRecruiter = V.SecExp.buildings.propHub.recruiterOffice === 0 || V.RecruiterID === 0;
@@ -54,14 +54,33 @@ App.SecExp.propagandaEffects = function(focus) {
 					increase += modifier + Math.floor((S.Recruiter.intelligence + S.Recruiter.intelligenceImplant) / 650);
 				}
 				break;
+			case "immigration":
+				modifier = forcedViewing ? V.SecExp.buildings.propHub.upgrades.campaign : 1;
+				if (noRecruiter) {
+					increase += (forcedViewing ? random(1, 4) : random(1, 2)) * modifier;
+				} else if (recruiterActive) {
+					increase += modifier + Math.floor((S.Recruiter.intelligence + S.Recruiter.intelligenceImplant) / 16);
+				}
+				t = `Your advertisement campaign outside the free city brings more people to the gates of your arcology`;
+				break;
+			case "enslavement":
+				modifier = forcedViewing ? V.SecExp.buildings.propHub.upgrades.campaign : 1;
+				if (noRecruiter) {
+					increase += (forcedViewing ? random(0, 4) : random(0, 2)) * modifier;
+				} else if (recruiterActive) {
+					increase += modifier + Math.floor((S.Recruiter.intelligence + S.Recruiter.intelligenceImplant) / 16);
+				}
+				t = `Many were attracted by your advertisement campaigns.`;
+				break;
 		}
 
-		t += `<span class='green'>Your propaganda campaign helps further your ${campaign} efforts.`;
-		if (V.SecExp.buildings.propHub.recruiterOffice && V.RecruiterID > 0) {
-			const {his} = getPronouns(S.Recruiter);
-			t += ` <span class='slave-name'>${SlaveFullName(S.Recruiter)}</span> is able to further boost your ${campaign} campaign from ${his} PR hub office.`;
+		if (focus === "social engineering" || focus === "recruitment") {
+			t += `<span class='green'>Your propaganda campaign helps further your ${campaign} efforts.`;
+			if (recruiterActive) {
+				t += ` <span class='slave-name'>${SlaveFullName(S.Recruiter)}</span> is boosting your ${campaign} campaign.`;
+			}
+			t += `</span>`;
 		}
-		t += `</span>`;
 	}
 	return {text: t, effect: Math.round(increase)};
 };
diff --git a/src/Mods/SecExp/potentialToDo.txt b/src/Mods/SecExp/potentialToDo.txt
index 3c6cd44d8a6abadd26db7f0d9a91e29b235580a0..b4ee828e6fd795eef4680585fe1a326d041269b6 100644
--- a/src/Mods/SecExp/potentialToDo.txt
+++ b/src/Mods/SecExp/potentialToDo.txt
@@ -1,7 +1,7 @@
 Hexall90's last merged commit: 52dde0b3
 
 - Remove unit.isDeployed as it is only used in battles and add the IDs to an array.
-	This would require that units have unique IDs (e.g bots: -1 -> 99, milita: 100 -> 199, slaves: 200 -> 299, mercs: 300 - 399, etc).
+	This would require that units have unique IDs (e.g bots: -1 -> 99, militia: 100 -> 199, slaves: 200 -> 299, mercs: 300 - 399, etc).
 	It would also allow for _*RebelledID to potentially be removed.
 
 - While at it something for barracks(general? commissar?) and riot center([Insert player title there]'s Will?? Big Sister? ) too would be nice
diff --git a/src/endWeek/economics/arcmgmt.js b/src/endWeek/economics/arcmgmt.js
index c1f22d0c1d86a9ac8e1017e05ec3449055a986ce..ca01371d6b230f4d9968953dd55dc6961c0e2669 100644
--- a/src/endWeek/economics/arcmgmt.js
+++ b/src/endWeek/economics/arcmgmt.js
@@ -1505,6 +1505,8 @@ globalThis.arcmgmt = function() {
 			V.visitors = _oldVisitors;
 		}
 		appendDiv(`<span class="green">${V.visitors} traders and tourists</span> visited your arcology this week.`);
+		appendDiv(App.SecExp.propagandaEffects("enslavement").text);
+		_enslaved += App.SecExp.propagandaEffects("enslavement").effect;
 
 		/* slaves*/
 		/* Slaves getting retired*/
@@ -1634,13 +1636,14 @@ globalThis.arcmgmt = function() {
 			}
 			r = [];
 			if (V.lowerClass < _LCD) {
-				let _LCImmigration = Math.trunc((_LCD - V.lowerClass) * (0.3 * _terrain)) + 1;
+				let _LCImmigration = Math.trunc((_LCD - V.lowerClass) * (0.3 * _terrain)) + 1 + App.SecExp.propagandaEffects("immigration").effect;
 				if (V.arcologies[0].FSIntellectualDependencyLaw === 1) { /* Enslaving the dumb lower class immigrants*/
 					const _intellectualDependencyEnslaved = Math.trunc(_LCImmigration * 0.25);
 					_LCImmigration -= _intellectualDependencyEnslaved;
 					_enslaved += _intellectualDependencyEnslaved;
 					r.push(`<span class="green">${_intellectualDependencyEnslaved} dumb immigrants</span> were enslaved for their own good.`);
 				}
+				
 				V.lowerClass += _LCImmigration;
 				if (_LCImmigration > 1) {
 					r.push(`<span class="green">${_LCImmigration} lower class citizens</span> moved to your arcology.`);
@@ -1698,7 +1701,8 @@ globalThis.arcmgmt = function() {
 				appendDiv(`Your middle class is <span class="green">sexually satiated</span> and their happiness attracts others.`);
 			}
 			if (V.middleClass < _MCD) {
-				let _MCImmigration = Math.trunc((_MCD - V.middleClass) * (0.3 * _terrain)) + 1;
+				let _MCImmigration = Math.trunc((_MCD - V.middleClass) * (0.3 * _terrain)) + 1 + App.SecExp.propagandaEffects("immigration").effect;
+				
 				V.middleClass += _MCImmigration;
 				if (_MCImmigration > 1) {
 					appendDiv(`<span class="green">${_MCImmigration} middle class citizens</span> moved to your arcology.`);
@@ -1736,8 +1740,9 @@ globalThis.arcmgmt = function() {
 				appendDiv(`Your upper class is <span class="green">sexually satiated</span> and their happiness attracts others.`);
 			}
 			if (V.upperClass < _UCD) {
-				let _UCImmigration = Math.trunc((_UCD - V.upperClass) * (0.3 * _terrain)) + 1;
+				let _UCImmigration = Math.trunc((_UCD - V.upperClass) * (0.3 * _terrain)) + 1 + App.SecExp.propagandaEffects("immigration").effect;
 				V.upperClass += _UCImmigration;
+
 				if (_UCImmigration > 1) {
 					appendDiv(`<span class="green">${_UCImmigration} upper class citizens</span> moved to your arcology.`);
 				} else if (_UCImmigration > 0) {
@@ -1780,7 +1785,8 @@ globalThis.arcmgmt = function() {
 				appendDiv(`Your millionaires are <span class="green">sexually satiated</span> and their happiness attracts others.`);
 			}
 			if (V.topClass < _TCD) {
-				let _TCImmigration = Math.trunc((_TCD - V.topClass) * (0.3 * _terrain)) + 1;
+				let _TCImmigration = Math.trunc((_TCD - V.topClass) * (0.3 * _terrain)) + 1 + App.SecExp.propagandaEffects("immigration").effect;
+				
 				V.topClass += _TCImmigration;
 				if (_TCImmigration > 1) {
 					appendDiv(`<span class="green">${_TCImmigration} millionaires</span> moved to your arcology.`); /* Fat Cat? One-Percenter? */
@@ -1798,6 +1804,7 @@ globalThis.arcmgmt = function() {
 				}
 			}
 		}
+		appendDiv(App.SecExp.propagandaEffects("immigration").text);
 	}
 
 	function slaveRetirement() {
diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw
index 5ad4adc2711d80853f8677c3c580c265df6bae75..2d4e1c64605fd6792234a160e9d235c2f453787e 100644
--- a/src/uncategorized/fsDevelopments.tw
+++ b/src/uncategorized/fsDevelopments.tw
@@ -73,11 +73,9 @@
 	<</if>>
 <</if>>
 
-<<if $secExpEnabled > 0>>
-	<<set _propagandaEffects = App.SecExp.propagandaEffects("social engineering")>>
-	_propagandaEffects.text
-	<<set _broadProgress += _propagandaEffects.effect>>
-<</if>>
+<<set _propagandaEffects = App.SecExp.propagandaEffects("social engineering")>>
+_propagandaEffects.text
+<<set _broadProgress += _propagandaEffects.effect>>
 
 <<if $terrain == "urban">>
 	The @@.yellow;urban location@@ of the arcology naturally promotes cultural interchange, holding back $arcologies[0].name's cultural independence.