diff --git a/devNotes/legacy files/walkPast.txt b/devNotes/legacy files/walkPast.txt
index 5efe024edf66b63e58e0c076250fb6b71735cebc..19ba55118c6cabd0d06af36d56b6ea71dfa4e6fd 100644
--- a/devNotes/legacy files/walkPast.txt	
+++ b/devNotes/legacy files/walkPast.txt	
@@ -1946,9 +1946,9 @@
 		<<if $activeSlave.weight >= 30>>
 			Slight jiggling can be seen in $his chubby belly as $he moves.
 		<</if>>
-		<<= App.Desc.crotch($activeSlave)>>
+		<<= App.Desc.crotch({slave: $activeSlave, saleDescription: 0})>>
 		<<= App.Desc.dick({slave: $activeSlave, saleDescription: 0})>>
-		<<= App.Desc.vagina($activeSlave)>>
+		<<= App.Desc.vagina({slave: $activeSlave, saleDescription: 0})>>
 		<<switch $activeSlave.clothes>>
 		<<case "a Fuckdoll suit">>
 			Its suit is expressly designed to encourage use of its holes.
diff --git a/src/facilities/nursery/widgets/children/longChildDescription.js b/src/facilities/nursery/widgets/children/longChildDescription.js
index fb19f4edc239754de17d1fb8536c2d31a5a17ab9..35dac96363ae93f7dbe8e5c2f49069e5dd832b22 100644
--- a/src/facilities/nursery/widgets/children/longChildDescription.js
+++ b/src/facilities/nursery/widgets/children/longChildDescription.js
@@ -7907,14 +7907,14 @@ App.Facilities.Nursery.LongChildDescription = function(child) {
 	r += `<br>&nbsp;&nbsp;&nbsp;&nbsp;`;
 
 	r += App.Desc.boobs({slave: child, saleDescription: 0});
-	r += App.Desc.boobsExtra(child);
+	r += App.Desc.boobsExtra({slave: child, saleDescription: 0});
 	if (V.showBodyMods) {
 		r += tats.boobs(child);
 	}
 	r += App.Desc.brand(child, "chest");
 	r += App.Desc.brand(child, "breast");
 	r += shoulders(child);
-	r += App.Desc.nipples(child);
+	r += App.Desc.nipples({slave: child, saleDescription: 0});
 	if (V.showBodyMods) {
 		r += piercings.nipples(child);
 	}
diff --git a/src/interaction/main/walkPast.js b/src/interaction/main/walkPast.js
index 09359beb9310a8c1d45dc07e53a3ba92f29f4de9..59c73387e7bbc9bc73e77d01b5d5f742410f4f2a 100644
--- a/src/interaction/main/walkPast.js
+++ b/src/interaction/main/walkPast.js
@@ -7684,9 +7684,9 @@ globalThis.walkPast = (function() {
 
 		V.target = "FVagina";
 		// Desc dick and vag
-		t += App.Desc.crotch(slave);
+		t += App.Desc.crotch({slave: slave, saleDescription: 0});
 		t += ` `;
-		t += App.Desc.vagina(slave);
+		t += App.Desc.vagina({slave: slave, saleDescription: 0});
 		t += ` `;
 		switch (slave.clothes) {
 			case "a Fuckdoll suit":
@@ -8255,7 +8255,7 @@ globalThis.walkPast = (function() {
 
 		V.target = "FDick";
 		// Desc dick and vag
-		t += App.Desc.crotch(slave);
+		t += App.Desc.crotch({slave: slave, saleDescription: 0});
 		t += ` `;
 		t += App.Desc.dick({slave: slave, saleDescription: 0});
 		t += ` `;
diff --git a/src/interaction/wardrobeUse.js b/src/interaction/wardrobeUse.js
index ce542db95738e535cb35ce6be78517efdef3f2de..9128766ec7393625939bbfd065cdce097a8125a7 100644
--- a/src/interaction/wardrobeUse.js
+++ b/src/interaction/wardrobeUse.js
@@ -9,7 +9,7 @@ App.UI.Wardrobe.clothes = function(slave) {
 	let el = document.createElement('div');
 	let links;
 	if (slave.fuckdoll === 0) {
-		// <<= App.Desc.clothing($activeSlave)>>
+		// <<= App.Desc.clothing({slave: $activeSlave, saleDescription: 0})>>
 
 		let label = document.createElement('div');
 		label.append(`Clothes: `);
@@ -421,7 +421,7 @@ App.UI.Wardrobe.bellyAccessory = function(slave) {
 	if (slave.fuckdoll !== 0) {
 		return;
 	}
-	// <<waistDescription>><<= App.Desc.pregnancy($activeSlave)>><<clothingCorsetDescription>>
+	// <<waistDescription>><<= App.Desc.pregnancy({slave: $activeSlave, saleDescription: 0})>><<clothingCorsetDescription>>
 
 	const {
 		// eslint-disable-next-line no-unused-vars
diff --git a/src/npc/descriptions/boobs/boobs.js b/src/npc/descriptions/boobs/boobs.js
index 75411a6041f0c1cfe9652f0c6ba1d0aed4538006..f3f7d6d565446b1cc2349696601b6405538e417d 100644
--- a/src/npc/descriptions/boobs/boobs.js
+++ b/src/npc/descriptions/boobs/boobs.js
@@ -1405,10 +1405,9 @@ App.Desc.boobs = function() {
  * @param {App.Utils.Pronouns} [pronouns]
  * @returns {string}
  */
-App.Desc.boobsExtra = function(slave, pronouns) {
+App.Desc.boobsExtra = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
 	const thisArcology = V.arcologies[0];
-	pronouns = pronouns || getPronouns(slave);
-	const {he, his, him, He, His, girl} = pronouns;
+	const {he, his, him, He, His, girl} = getPronouns(slave);
 
 	function penthouseAccessibility() {
 		let rt = '';
@@ -1416,7 +1415,7 @@ App.Desc.boobsExtra = function(slave, pronouns) {
 			rt = `Fortunately for ${him}, the penthouse is adapted for daily life with a bosom`;
 		} else {
 			rt = `${He}`;
-			if (V.saleDescription === 1) {
+			if (saleDescription === 1) {
 				rt += `'ll have`;
 			} else {
 				rt += ` has`;
@@ -1556,9 +1555,8 @@ App.Desc.boobsExtra = function(slave, pronouns) {
  * @param {App.Utils.Pronouns} [pronouns]
  * @returns {string}
  */
-App.Desc.nipples = function(slave, pronouns) {
-	pronouns = pronouns || getPronouns(slave);
-	const {he, him, his, He, His} = pronouns;
+App.Desc.nipples = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
+	const {he, him, his, He, His} = getPronouns(slave);
 	const nipColor = nippleColor(slave);
 
 	let r = '';
@@ -1688,7 +1686,7 @@ App.Desc.nipples = function(slave, pronouns) {
 	}
 
 	if (slave.fuckdoll === 0) {
-		if ((V.showClothing === 1) && (V.saleDescription === 0)) {
+		if (V.showClothing === 1 && saleDescription === 0) {
 			switch (slave.clothes) {
 				case "a monokini":
 					r += ` Since ${he} is topless, they're plainly visible.`;
@@ -1751,9 +1749,8 @@ App.Desc.nipples = function(slave, pronouns) {
  * @param {App.Utils.Pronouns} [pronouns]
  * @returns {string}
  */
-App.Desc.areola = function(slave, pronouns) {
-	pronouns = pronouns || getPronouns(slave);
-	const {his, His, him} = pronouns;
+App.Desc.areola = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
+	const {his, His, him} = getPronouns(slave);
 	const nipColor = nippleColor(slave);
 
 	let r = [];
@@ -1796,7 +1793,7 @@ App.Desc.areola = function(slave, pronouns) {
 				r.push(this.areolaePiercing(slave, pronouns));
 			}*/
 		}
-		if ((V.showClothing === 1) && (V.saleDescription === 0)) {
+		if (V.showClothing === 1 && saleDescription === 0) {
 			if (slave.areolae > 1) {
 				switch (slave.clothes) {
 					case "a string bikini":
diff --git a/src/npc/descriptions/butt/anus.js b/src/npc/descriptions/butt/anus.js
index 6de7462ab14c150f8d9def27c62eb91aba28aa4c..4e34335f42595ca38d7098616b3ec455de0f433d 100644
--- a/src/npc/descriptions/butt/anus.js
+++ b/src/npc/descriptions/butt/anus.js
@@ -100,7 +100,7 @@ App.Desc.anus = function({slave, saleDescription, eventDescription, applyLaw} =
 		r.push(`${His} asshole looks unusually puffy and sore. ${He}'s either been cruelly assraped lately, or ${he}'s had an irritant placed in ${his} anus.`);
 	}
 
-	r.push(App.Desc.buttplug(slave));
+	r.push(App.Desc.buttplug({slave: slave, saleDescription: saleDescription}));
 
 	r.push(App.Desc.mods(slave, "anus"));
 
diff --git a/src/npc/descriptions/butt/buttplug.js b/src/npc/descriptions/butt/buttplug.js
index dbbee73b48793d462e28d2184a1d3e1d626d4345..a6e1c0ad8581eeeaec8ebe12e86da77071b2166f 100644
--- a/src/npc/descriptions/butt/buttplug.js
+++ b/src/npc/descriptions/butt/buttplug.js
@@ -2,7 +2,7 @@
  * @param {App.Entity.SlaveState} slave
  * @returns {string}
  */
-App.Desc.buttplug = function(slave) {
+App.Desc.buttplug = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
 	const r = [];
 	const {
 		he, him, his, hers, himself, boy, He, His
@@ -20,7 +20,7 @@ App.Desc.buttplug = function(slave) {
 			r.push(`being penetrated by ${his} milking machine for curative delivery.`);
 		}
 	} else {
-		if (V.showClothing === 1 && V.saleDescription === 0) {
+		if (V.showClothing === 1 && saleDescription === 0) {
 			switch (slave.clothes) {
 				case "a Fuckdoll suit":
 					r.push(`The suit has a wide opening for its rear hole, leaving the anus bare and unprotected.`);
diff --git a/src/npc/descriptions/crotch/crotch.js b/src/npc/descriptions/crotch/crotch.js
index 1327548bed98685befa89339d2ceba19e761c8df..46c95e46ed2ebc97e7b95a4dfd4bcbfb851552c9 100644
--- a/src/npc/descriptions/crotch/crotch.js
+++ b/src/npc/descriptions/crotch/crotch.js
@@ -2,12 +2,12 @@
  * @param {App.Entity.SlaveState} slave
  * @returns {string}
  */
-App.Desc.crotch = function(slave) {
+App.Desc.crotch = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
 	const r = [];
 	const {
 		he, him, his, hers, himself, boy, He, His
 	} = getPronouns(slave);
-	if (V.showClothing === 1 && V.saleDescription === 0) {
+	if (V.showClothing === 1 && saleDescription === 0) {
 		if (slave.assignment === "work in the dairy" && V.dairyRestraintsSetting > 1) {
 			if (V.dairyPregSetting > 1 && slave.ovaries === 1) {
 				r.push(`${slave.slaveName}'s pussy is occupied by a massive dildo, servicing ${his} womb with its ejaculate.`);
diff --git a/src/npc/descriptions/crotch/vagina.js b/src/npc/descriptions/crotch/vagina.js
index 62189b9d2cd89f8b6a35eb745bbb525a44bbebe7..83540a4438215afc3198e1ea2b2a47998a819621 100644
--- a/src/npc/descriptions/crotch/vagina.js
+++ b/src/npc/descriptions/crotch/vagina.js
@@ -2,7 +2,7 @@
  * @param {App.Entity.SlaveState} slave
  * @returns {string}
  */
-App.Desc.vagina = function(slave) {
+App.Desc.vagina = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
 	const r = [];
 	const {
 		he, him, his, hers, himself, boy, He, His
@@ -186,7 +186,7 @@ App.Desc.vagina = function(slave) {
 			} else {
 				if (slave.assignment === "work in the dairy" && V.dairyPregSetting > 1) {
 					r.push(`The dildo's ejaculate includes a drug that encourages vaginal lubrication, which is having a drastic effect on ${him}, since ${he}'s already very gifted in that regard. The dildo makes a wet noise every time it thrusts into ${him}, and femcum streams into a catch basin beneath ${him}. The smell of pussy is overwhelming.`);
-				} else if ((slave.aphrodisiacs > 0) || (V.saleDescription === 1 && V.gingering === "vasodilator") || (slave.inflationType === "aphrodisiac")) {
+				} else if ((slave.aphrodisiacs > 0) || (saleDescription === 1 && V.gingering === "vasodilator") || (slave.inflationType === "aphrodisiac")) {
 					r.push(`The combination of the aphrodisiacs and ${his} natural tendency to produce a lot of female lubricant is having a drastic effect. ${His} cunt is absolutely beribboned with femcum, and ${he} smells strongly of wet, clean pussy.`);
 				} else if ((slave.energy > 95)) {
 					r.push(`${He} has a naturally wet cunt, and in combination with ${his} nymphomania, it's soaking. ${He} smells of good clean female arousal.`);
diff --git a/src/npc/descriptions/longSlave.js b/src/npc/descriptions/longSlave.js
index baf94a843d9d5b9c9f66ce1cb8e6905392f721dc..ed617fa61d2fea93d88bd1589af9a288ce876398 100644
--- a/src/npc/descriptions/longSlave.js
+++ b/src/npc/descriptions/longSlave.js
@@ -185,7 +185,7 @@ App.Desc.longSlave = function({slave = V.activeSlave, saleDescription = V.saleDe
 		}
 	}
 
-	r.push(App.Desc.sceneIntro(slave));
+	r.push(App.Desc.sceneIntro({slave: slave, saleDescription: saleDescription}));
 	r.push(App.Desc.name(slave));
 	r.push(App.Desc.ageAndHealth(slave));
 	$(p).append(r.join(" "));
@@ -388,7 +388,7 @@ App.Desc.longSlave = function({slave = V.activeSlave, saleDescription = V.saleDe
 	r = [];
 
 	r.push(App.Desc.limbs(slave));
-	r.push(App.Desc.clothing(slave));
+	r.push(App.Desc.clothing({slave: slave, saleDescription: saleDescription}));
 	r.push(App.Desc.armwear(slave));
 
 	if (V.showBodyMods === 1) {
@@ -413,7 +413,7 @@ App.Desc.longSlave = function({slave = V.activeSlave, saleDescription = V.saleDe
 	}
 
 	r.push(App.Desc.piercing(slave, "corset"));
-	r.push(App.Desc.pregnancy(slave));
+	r.push(App.Desc.pregnancy({slave: slave, saleDescription: saleDescription}));
 	r.push(App.Desc.legs(slave));
 	r.push(App.Desc.mods(slave, "thigh"));
 	r.push(App.Desc.mods(slave, "calf"));
@@ -706,11 +706,11 @@ App.Desc.longSlave = function({slave = V.activeSlave, saleDescription = V.saleDe
 	// Calling all boob widgets
 	r.push(App.Desc.boobs({slave: slave, saleDescription: saleDescription}));
 	r.push(App.Desc.boobsShape(slave));
-	r.push(App.Desc.boobsExtra(slave));
+	r.push(App.Desc.boobsExtra({slave: slave, saleDescription: saleDescription}));
 	r.push(App.Desc.mods(slave, "chest"));
 	r.push(App.Desc.mods(slave, "breast"));
 	r.push(App.Desc.shoulders(slave));
-	r.push(App.Desc.nipples(slave));
+	r.push(App.Desc.nipples({slave: slave, saleDescription: saleDescription}));
 	r.push(App.Desc.mods(slave, "nipple"));
 	r.push(App.Desc.areola(slave));
 	r.push(App.Desc.mods(slave, "areolae"));
@@ -733,9 +733,9 @@ App.Desc.longSlave = function({slave = V.activeSlave, saleDescription = V.saleDe
 	p.className = "indent";
 	r = [];
 
-	r.push(App.Desc.crotch(slave));
+	r.push(App.Desc.crotch({slave: slave, saleDescription: saleDescription}));
 	r.push(App.Desc.dick({slave: slave, saleDescription: saleDescription}));
-	r.push(App.Desc.vagina(slave));
+	r.push(App.Desc.vagina({slave: slave, saleDescription: saleDescription}));
 	r.push(App.Desc.anus({slave: slave, saleDescription: saleDescription}));
 
 	$(p).append(r.join(` `));
diff --git a/src/npc/descriptions/sceneIntro.js b/src/npc/descriptions/sceneIntro.js
index 6578227a2afc0ddee41ebd2c211321e145732f06..90850ad142c72864dd47447451259fcdcec69123 100644
--- a/src/npc/descriptions/sceneIntro.js
+++ b/src/npc/descriptions/sceneIntro.js
@@ -2,7 +2,7 @@
  * @param {App.Entity.SlaveState} slave
  * @returns {string}
  */
-App.Desc.sceneIntro = function(slave) {
+App.Desc.sceneIntro = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
 	const r = [];
 	const {
 		he, him, his, He, His, himself, wife
@@ -16,7 +16,7 @@ App.Desc.sceneIntro = function(slave) {
 				r.push(`${He} has been ordered to serve <span class="slave name simple">${SlaveFullName(lsd)}</span> specifically.`);
 			}
 		}
-	} else if (V.ui !== "start" && V.saleDescription !== 1) {
+	} else if (V.ui !== "start" && saleDescription !== 1) {
 		r.push(inspectionIntro());
 		if (slave.sentence > 0) {
 			r.push(sentence());
diff --git a/src/npc/descriptions/style/clothing.js b/src/npc/descriptions/style/clothing.js
index b0048eaed9faf5a3ad6c8ced0421b95836edfb11..8a1828971e135de4242f76271ccd44f6fc1e263e 100644
--- a/src/npc/descriptions/style/clothing.js
+++ b/src/npc/descriptions/style/clothing.js
@@ -2,13 +2,13 @@
  * @param {App.Entity.SlaveState} slave
  * @returns {string}
  */
-App.Desc.clothing = function(slave) {
+App.Desc.clothing = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
 	const r = [];
 	const {
 		he, him, his, hers, himself, boy, He, His
 	} = getPronouns(slave);
 
-	if (V.showClothing === 1 && V.saleDescription === 0) {
+	if (V.showClothing === 1 && saleDescription === 0) {
 		r.push(`${slave.slaveName} is`);
 		if (slave.clothes === "choosing her own clothes") {
 			r.push(`allowed to choose ${his} own clothes, but hasn't made a selection yet,`);
diff --git a/src/npc/descriptions/womb/pregnancy.js b/src/npc/descriptions/womb/pregnancy.js
index 1a9fd903abae738cf88dc0050530a1d503d10457..54ee5e68d7a6c8e3312cb2ff6c7c357c48321a86 100644
--- a/src/npc/descriptions/womb/pregnancy.js
+++ b/src/npc/descriptions/womb/pregnancy.js
@@ -2,7 +2,7 @@
  * @param {App.Entity.SlaveState} slave
  * @returns {string}
  */
-App.Desc.pregnancy = function(slave) {
+App.Desc.pregnancy = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
 	const r = [];
 	const {
 		he, him, his, hers, himself, boy, He, His
@@ -64,7 +64,7 @@ App.Desc.pregnancy = function(slave) {
 		} else {
 			r.push(`a staggering ${slave.pregType} babies.`);
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyPreg >= 750000) {
 		r.push(`${He} is`);
 		if (slave.belly > (slave.pregAdaptation * 1000)) {
@@ -79,7 +79,7 @@ App.Desc.pregnancy = function(slave) {
 		} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
 			r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant >= 750000) {
 		r.push(`${He} looks <span class="red">ready to pop!</span> ${His} stomach is`);
 		if (slave.belly > (slave.pregAdaptation * 1000)) {
@@ -120,7 +120,7 @@ App.Desc.pregnancy = function(slave) {
 		} else {
 			r.push(`${slave.pregType} babies.`);
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant >= 600000) {
 		r.push(`${He} looks <span class="pink">dangerously pregnant.</span> ${He} stomach is massively stretched by ${his} absurdly overfilled ${slave.bellyImplant}cc belly implant.`);
 	} else if (slave.bellyPreg >= 450000) {
@@ -155,7 +155,7 @@ App.Desc.pregnancy = function(slave) {
 		} else {
 			r.push(`${slave.pregType} babies.`);
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant >= 450000) {
 		r.push(`${He} looks <span class="pink">absurdly pregnant.</span> ${He} stomach is massively stretched by ${his} overfilled ${slave.bellyImplant}cc belly implant.`);
 	} else if (slave.bellyPreg >= 300000) {
@@ -190,7 +190,7 @@ App.Desc.pregnancy = function(slave) {
 		} else {
 			r.push(`${slave.pregType} children.`);
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant >= 300000) {
 		r.push(`${He} looks <span class="pink">absurdly pregnant.</span> ${His} overburdened middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
 	} else if (slave.bellyPreg >= 120000) {
@@ -244,7 +244,7 @@ App.Desc.pregnancy = function(slave) {
 				r.push(`ready to give birth to octuplets.`);
 			}
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant >= 120000) {
 		r.push(`${He} looks <span class="pink">obscenely pregnant with octuplets.</span> ${His} overburdened middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
 	} else if (slave.bellyPreg >= 15000) {
@@ -600,7 +600,7 @@ App.Desc.pregnancy = function(slave) {
 				}
 			}
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant >= 105000) {
 		r.push(`${He} looks <span class="pink">massively pregnant with septuplets.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
 	} else if (slave.bellyImplant >= 90000) {
@@ -636,7 +636,7 @@ App.Desc.pregnancy = function(slave) {
 				r.push(`almost ready to give birth.`);
 			}
 		}
-		r.push(`${App.Desc.superfetation(slave)}`);
+		r.push(`${App.Desc.superfetation({slave: slave, saleDescription: saleDescription})}`);
 	} else if (slave.bellyImplant >= 10000) {
 		r.push(`${He} looks <span class="pink">hugely pregnant.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
 	} else if (slave.bellyPreg >= 5000) {
@@ -660,7 +660,7 @@ App.Desc.pregnancy = function(slave) {
 				r.push(`the baby inside ${him} is growing rapidly.`);
 			}
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant >= 5000) {
 		r.push(`${He} looks <span class="pink">very pregnant.</span> ${He} rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
 	} else if (slave.bellyPreg >= 1500) {
@@ -679,19 +679,19 @@ App.Desc.pregnancy = function(slave) {
 		} else {
 			r.push(`<span class="pink">visibly pregnant.</span>`);
 		}
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant >= 1500) {
 		r.push(`${He} looks <span class="pink">visibly pregnant.</span> ${He} rounded middle is caused by ${his} ${slave.bellyImplant}cc belly implant.`);
 	} else if (slave.bellyPreg >= 100) {
 		r.push(`${He} is <span class="pink">pregnant</span> and just beginning to show, though it is hard to tell at a glance.`);
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.bellyImplant > 0) {
 		r.push(`${He} has an abdominal implant, though it doesn't round out ${his} belly too much yet at a tiny ${slave.bellyImplant}ccs.`);
 	} else if (slave.bellyImplant === 0) {
 		r.push(`${He} has an abdominal implant, but it is completely empty.`);
 	} else if (slave.pregKnown === 1) {
 		r.push(`${He} is <span class="pink">pregnant,</span> though it isn't visible yet.`);
-		r.push(App.Desc.superfetation(slave));
+		r.push(App.Desc.superfetation({slave: slave, saleDescription: saleDescription}));
 	} else if (slave.preg > 0 && slave.pregKnown === 0) {
 		r.push(`${His} period is late.`);
 	}
@@ -760,7 +760,7 @@ App.Desc.pregnancy = function(slave) {
 			r.push(`Despite being pregnant for only ${slave.pregWeek} weeks, ${his} pregnancy is larger than anticipated.`);
 		}
 	}
-	if (slave.pregKnown === 1 && V.saleDescription === 0) {
+	if (slave.pregKnown === 1 && saleDescription === 0) {
 		const slaveWD = WombGetLittersData(slave);
 		if (slave.geneticQuirks.superfetation === 2 && slaveWD.litters.length > 1) {
 			if (V.pregnancyMonitoringUpgrade !== 1) {
diff --git a/src/npc/descriptions/womb/superfetation.js b/src/npc/descriptions/womb/superfetation.js
index dfd4ef1bc129e77786ebf1e0fc5e192e6fee113a..d84f652a857b68988b669d00fa006d2725568560 100644
--- a/src/npc/descriptions/womb/superfetation.js
+++ b/src/npc/descriptions/womb/superfetation.js
@@ -2,7 +2,7 @@
  * @param {App.Entity.SlaveState} slave
  * @returns {string}
  */
-App.Desc.superfetation = function(slave) {
+App.Desc.superfetation = function({slave, saleDescription, eventDescription, applyLaw} = {}) {
 	const r = [];
 	const {
 		he, him, his, hers, himself, boy, He, His
@@ -10,7 +10,7 @@ App.Desc.superfetation = function(slave) {
 	let lsd;
 	let daddy;
 	const slaveWD = WombGetLittersData(slave);
-	if (slave.geneticQuirks.superfetation === 2 && slaveWD.litters.length > 1 && V.pregnancyMonitoringUpgrade === 1 && V.saleDescription === 0) {
+	if (slave.geneticQuirks.superfetation === 2 && slaveWD.litters.length > 1 && V.pregnancyMonitoringUpgrade === 1 && saleDescription === 0) {
 		r.push(`${His} womb contains ${num(slaveWD.litters.length)} separate pregnancies`);
 		for (let litCount = 0; litCount < slaveWD.litters.length; litCount++) {
 			const countLitter = slaveWD.countLitter[litCount];
diff --git a/src/pregmod/analyzePregnancy.tw b/src/pregmod/analyzePregnancy.tw
index f830539a30f3df5696cefe37a2e7e85e93c2f1ec..1c9c75a4c7ea1340982d1edaa7a8108ca695416d 100644
--- a/src/pregmod/analyzePregnancy.tw
+++ b/src/pregmod/analyzePregnancy.tw
@@ -14,7 +14,7 @@
 		<<= getSlave($activeSlave.ID).slaveName>> is <<if getSlave($activeSlave.ID).devotion < 20>>restrained<<else>>comfortably reclined<</if>> with $his stomach prepped for examination. $He shudders slightly at the cold touch of the sensor against $his skin.
 	</p>
 
-	<<set $saleDescription = 1>><<= App.Desc.pregnancy($activeSlave)>><<set $saleDescription = 0>>
+	<<set $saleDescription = 1>><<= App.Desc.pregnancy({slave: $activeSlave, saleDescription: 1})>><<set $saleDescription = 0>>
 
 	<p>
 		<h2>Overall statistics</h2>