diff --git a/js/003-data/constants.js b/js/003-data/constants.js
index c8d33a1aaeffbe361165cf762e349571501f8c8a..4c78a1d70136bf013cb034ef476d7d8b9151f8c3 100644
--- a/js/003-data/constants.js
+++ b/js/003-data/constants.js
@@ -29,6 +29,7 @@ globalThis.Job = Object.freeze({
 	// Leadership Assignments
 	BODYGUARD: 'guard you',
 	HEADGIRL: 'be your Head Girl',
+	HEADGIRLSUITE: 'live with your Head Girl',
 	RECRUITER: 'recruit girls',
 	AGENT: 'be your agent',
 	AGENTPARTNER: 'live with your agent',
@@ -46,7 +47,6 @@ globalThis.Job = Object.freeze({
 	DAIRY: 'work in the dairy',
 	FARMER: 'be the Farmer',
 	FARMYARD: 'work as a farmhand',
-	HEADGIRLSUITE: 'live with your Head Girl',
 	CONCUBINE: 'be your Concubine',
 	MASTERSUITE: 'serve in the master suite',
 	MATRON: 'be the Matron',
diff --git a/src/005-passages/optionsPassages.js b/src/005-passages/optionsPassages.js
index 580a3c2e0742ae04cf4b83096447f0525d17783a..b4c0697a1f16fb313e2df6e5e56d333d1b3a4c50 100644
--- a/src/005-passages/optionsPassages.js
+++ b/src/005-passages/optionsPassages.js
@@ -18,11 +18,7 @@ new App.DomPassage("Description Options",
 	() => {
 		V.nextButton = "Back";
 		if (V.storedLink !== "Slave Interact") {
-			if (lastVisited("Slave Interact") === 1) {
-				V.storedLink = "Slave Interact";
-			} else {
-				V.storedLink = "Options";
-			}
+			V.storedLink = lastVisited("Slave Interact") === 1 ? "Slave Interact" : "Options";
 		}
 		V.nextLink = V.storedLink;
 
@@ -34,11 +30,7 @@ new App.DomPassage("Summary Options",
 	() => {
 		V.nextButton = "Back";
 		if (V.storedLink !== "Slave Interact" && V.storedLink !== "Main") {
-			if (lastVisited("Main") === 1) {
-				V.storedLink = "Main";
-			} else {
-				V.storedLink = "Options";
-			}
+			V.storedLink = lastVisited("Main") === 1 ? "Main" : "Options";
 		}
 		V.nextLink = V.storedLink;
 		V.passageSwitchHandler = App.EventHandlers.optionsChanged;
diff --git a/src/endWeek/player/prLongTermPhysicalEffects.js b/src/endWeek/player/prLongTermPhysicalEffects.js
index 8452fb102d8e2773f6ca358f2c29a3ff3ba2be5c..4f87f3743758ea8cb422181202944272773e3fe0 100644
--- a/src/endWeek/player/prLongTermPhysicalEffects.js
+++ b/src/endWeek/player/prLongTermPhysicalEffects.js
@@ -166,7 +166,7 @@ App.EndWeek.Player.longTermPhysicalEffects = function(PC = V.PC) {
 				} else if (PC.analArea > 1) {
 					r.push(`used, and it now looks quite lewd.`);
 				} else {
-					r.push(`penetrated, and to put it delicately, is beggining to look a little lewd.`);
+					r.push(`penetrated, and to put it delicately, is beginning to look a little lewd.`);
 				}
 			}
 		}
diff --git a/src/facilities/dairy/dairy.js b/src/facilities/dairy/dairy.js
index 80c2d2cd6acaba2ab8ae8ac50899079693dd4384..c340f700bc9815f8794a72188ad7638af5d3c01f 100644
--- a/src/facilities/dairy/dairy.js
+++ b/src/facilities/dairy/dairy.js
@@ -200,7 +200,7 @@ App.Facilities.Dairy.dairy = class Dairy extends App.Facilities.Facility {
 	/** @returns {FC.Facilities.Expand} */
 	get expand() {
 		return {
-			desc: `${this.facility.nameCaps} can support ${V.dairy} milkers. There ${numberWithPluralOne(this.facility.hostedSlaves, 'is', 'are')} currently ${numberWithPluralOne(this.facility.hostedSlaves, 'cow')} being drained in ${V.dairyName}.`,
+			desc: `${this.facility.nameCaps} can support ${V.dairy} milkers. There ${this.facility.hostedSlaves === 1 ? 'is' : 'are'} currently ${numberWithPluralOne(this.facility.hostedSlaves, 'cow')} being drained in ${V.dairyName}.`,
 			removeSlave: "get milked",
 		};
 	}
@@ -721,7 +721,7 @@ App.Facilities.Dairy.dairy = class Dairy extends App.Facilities.Facility {
 					text.push(`In unison, the milking machines press their feeding phalli into the slaves' mouths and down their throats. Once situated, they begin to facefuck the slaves, who gag and struggle as they figure out how to breathe while this is going on. Once each slave is no longer panicking and is inhaling and exhaling regularly, there is a hydraulic sound and the transparent reservoir of feeding fluid near their head begins to drain. The slaves swallow desperately, their bellies beginning to swell with nutrition and drugs.`);
 				}
 			} else if (setting === "preg") {
-				if (V.dairyPregSetting < 2) {
+				if (V.dairyPregSetting === 1) {
 					for (const slave of this.facility.employees()) {
 						const {He, him, his} = getPronouns(slave);
 						if (slave.vagina.isBetween(-1, 3)) {
@@ -741,7 +741,7 @@ App.Facilities.Dairy.dairy = class Dairy extends App.Facilities.Facility {
 					text.push(`In unison, the milking machines withdraw their dildos from the pregnant slaves' vaginas. The auxiliary drug injectors hiss as the slaves are filled with drugs that promote natural lubrication. The slaves begin to shift awkwardly as they feel their pussies begin to drool slick female fluids. Once a machine judges that its slave's cunt is sufficiently wet, it readies a gigantic dildo. The slaves cannot see their own groins, but as soon as the heads of the dildos touch their pussylips, they begin to`);
 					text.push(`struggle instinctively against their restraints${V.dairyFeedersSetting < 2 ? ', and the more energetic ones begin to weep': ''}.`);
 					text.push(`As the massive phalli begin to ejaculate fertility drugs and semen, they drive all resistance out of the poor girls.`);
-				} else {
+				} else if (V.dairyPregSetting === 2) {
 					text.push(`In unison, the milking machines withdraw their monstrous dildos from the pregnant slaves' stretched cunts. Their pussies' overcharged production of natural lubricant produces a gush of pent-up female fluids from each loose vagina as the phalli slide clear.`);
 
 					if (V.dairyFeedersSetting < 2) {
diff --git a/src/markets/theMarket/buySlaves.js b/src/markets/theMarket/buySlaves.js
index 7a998235225ce1086144f106e8d94d2925cec222..f955e3a53407cc1edf91982aa510461e4cb979fa 100644
--- a/src/markets/theMarket/buySlaves.js
+++ b/src/markets/theMarket/buySlaves.js
@@ -202,11 +202,7 @@ App.UI.buySlaves = function() {
 		V.nextButton = "Back";
 		V.nextLink = "Buy Slaves";
 		V.returnTo = "Buy Slaves";
-		if (store && store.encyclopedia) {
-			V.encyclopedia = store.encyclopedia;
-		} else {
-			V.encyclopedia = "Obtaining Slaves";
-		}
+		V.encyclopedia = store && store.encyclopedia ? store.encyclopedia : "Obtaining Slaves";
 		// Multi-Purchase Support
 		if (V.market.newSlaves.length > 0) {
 			V.nextButton = "Continue";