diff --git a/src/endWeek/saServant.js b/src/endWeek/saServant.js
index 94e01b497863089a2575c679001a4d9de1b19f4b..f8a89f71d2424cd2f4094fe0ad06726ff21e6fdd 100644
--- a/src/endWeek/saServant.js
+++ b/src/endWeek/saServant.js
@@ -180,6 +180,23 @@ App.SlaveAssignment.servant = function saServant(slave, stewardessBonus = 0) {
 				slave.boobsMilk = 0;
 			}
 		}
+
+		if (App.Entity.facilities.servantsQuarters.upgrade('monitoring')) {
+			r.push(`The enhanced monitoring systems ensures ${he} is always busy and working, improving ${his} effectiveness.`);
+			if (slave.fetish !== Fetish.MINDBROKEN && slave.devotion < 20 && jsRandom(0, 3) === 1) {
+				if (isHorny(slave) && jsRandom(0, 1) === 1) {
+					r.push(`Unable to control ${his} libido, ${slave.slaveName} is caught desperately dry humping a bed ${he} should be making;`);
+				} else {
+					r.push(`A camera catches ${him} slacking off and skipping out on assigned work;`);
+				}
+				r.push(`${S.Stewardess ? S.Stewardess.slaveName : V.assistant.name} is immediately informed to punish ${him} appropriately, <span class="devotion inc">increasing ${his} obedience.</span>`);
+				slave.devotion += S.Attendant ? 3 : 2;
+				if (slave.trust > -30) {
+					r.push(`Realizing ${he} is always being watched <span class="trust dec">increases ${his} fear of you.</span>`);
+					slave.trust -= 2;
+				}
+			}
+		}
 	}
 
 	/**
diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index c6948b0cb40abeaa85b4d8ca6535943c1a117df8..0268717235ed2a851c60cc42188c0452d9d9c902 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -1140,6 +1140,9 @@ globalThis.houseServantEffectiveness = function(slave) {
 	if (App.Data.Careers.General.servant.includes(slave.career) || slave.skill.servant >= Constant.MASTERED_XP) {
 		effectiveness *= 1.1;
 	}
+	if (App.Entity.facilities.servantsQuarters.upgrade('monitoring') === 1) {
+		effectiveness *= 1.1;
+	}
 	effectiveness = Math.trunc(effectiveness * App.SlaveAssignment.PartTime.efficiencyModifier(slave) * restEffects(slave) / 10);
 	return effectiveness;
 };