diff --git a/src/endWeek/economics/personalNotes.js b/src/endWeek/economics/personalNotes.js
index d7f0504efed4a907d6381ab2b91d1f2bcf4e97a5..9701d061fb6606dc44d34b772c28d1e8219cac5d 100644
--- a/src/endWeek/economics/personalNotes.js
+++ b/src/endWeek/economics/personalNotes.js
@@ -36,7 +36,7 @@ App.EndWeek.personalNotes = function() {
 				if (V.arcologies[0].FSPastoralistLaw === 1) {
 					milkSale = milk * (28 + Math.trunc(V.arcologies[0].FSPastoralist / 30));
 					r.push(`Since breast milk is ${V.arcologies[0].name}'s only legal dairy product, and yours is in a class all of its own, society can't get enough of it and you make <span class="yellowgreen">${cashFormat(milkSale)}.</span>`);
-				} else if ((V.arcologies[0].FSPastoralist !== "unset")) {
+				} else if (V.arcologies[0].FSPastoralist !== "unset") {
 					milkSale = milk * (12 + Math.trunc(V.arcologies[0].FSPastoralist / 30));
 					r.push(`Since milk is fast becoming a major part of the ${V.arcologies[0].name}'s dietary culture, and yours is in a class all of its own, you make <span class="yellowgreen">${cashFormat(milkSale)}.</span>`);
 				} else {
@@ -209,11 +209,7 @@ App.EndWeek.personalNotes = function() {
 						}
 					} else if (V.PC.boobs >= 800) {
 						if (random(1, 100) > 75) {
-							r.push(`Your breasts have <span class="lime">grown a bit larger</span> to feed your coming child`);
-							if (V.PC.pregType > 1) {
-								r.push(`ren`);
-							}
-							r.push(`.`);
+							r.push(`Your breasts have <span class="lime">grown a bit larger</span> to feed your coming ${(V.PC.pregType === 1) ? `child`:`children`}.`);
 							V.PC.boobs += 25;
 							if (V.PC.boobs >= 1000) {
 								r.push(`You popped your bra when you put it on; <span class="lime">time to order some F-cups.</span>`);
@@ -221,11 +217,7 @@ App.EndWeek.personalNotes = function() {
 						}
 					} else if (V.PC.boobs >= 650) {
 						if (random(1, 100) > 80) {
-							r.push(`Your breasts have <span class="lime">grown a bit larger</span> to feed your coming child`);
-							if (V.PC.pregType > 1) {
-								r.push(`ren`);
-							}
-							r.push(`.`);
+							r.push(`Your breasts have <span class="lime">grown a bit larger</span> to feed your coming ${(V.PC.pregType === 1) ? `child`:`children`}.`);
 							V.PC.boobs += 25;
 							if (V.PC.boobs >= 800) {
 								r.push(`Their prominence, and a quick measuring, reveals <span class="lime">you now sport DDs.</span>`);
@@ -233,11 +225,7 @@ App.EndWeek.personalNotes = function() {
 						}
 					} else if (V.PC.boobs >= 500) {
 						if (random(1, 100) > 80) {
-							r.push(`Your breasts have <span class="lime">grown a bit larger</span> to feed your coming child`);
-							if (V.PC.pregType > 1) {
-								r.push(`ren`);
-							}
-							r.push(`.`);
+							r.push(`Your breasts have <span class="lime">grown a bit larger</span> to feed your coming ${(V.PC.pregType === 1) ? `child`:`children`}.`);
 							V.PC.boobs += 25;
 							if (V.PC.boobs >= 650) {
 								r.push(`They're big, sensitive, <span class="lime">and now a D-cup.</span>`);
diff --git a/src/endWeek/saDrugs.js b/src/endWeek/saDrugs.js
index 794e1fdb090c75197ccd886001090fb484304102..8fe4927f1f8c826c1b895df2a7a1ec6ffe67267f 100644
--- a/src/endWeek/saDrugs.js
+++ b/src/endWeek/saDrugs.js
@@ -1672,22 +1672,10 @@ App.SlaveAssignment.drugs = (function() {
 					healthDamage(slave, 20);
 					induce(slave);
 					V.birthee = 1;
-					r += ` ${He} has been ready to give birth for some time now. Suppressing birth for so long <span class="red">greatly affects ${his} health.</span> ${He} may <span class="red">have trouble</span> giving birth to ${his} oversized child`;
-					if (slave.pregType > 1) {
-						r += `ren`;
-					}
-					r += `. ${He} seems to be in distress, ${his} body is <span class="red">forcing ${his} child`;
-					if (slave.pregType > 1) {
-						r += `ren`;
-					}
-					r += ` out!</span>`;
+					r += ` ${He} has been ready to give birth for some time now. Suppressing birth for so long <span class="red">greatly affects ${his} health.</span> ${He} may <span class="red">have trouble</span> giving birth to ${his} oversized ${(slave.pregType === 1) ? `child`:`children`}. ${He} seems to be in distress, ${his} body is <span class="red">forcing ${his} ${(slave.pregType === 1) ? `child`:`children`} out!</span>`;
 				} else if (WombBirthReady(slave, slave.pregData.normalBirth * 1.25) > 0) {
 					healthDamage(slave, 20);
-					r += ` ${He} has been ready to give birth for some time now. Suppressing birth for so long <span class="red">greatly affects ${his} health.</span> ${He} may <span class="red">have trouble</span> giving birth to ${his} oversized child`;
-					if (slave.pregType > 1) {
-						r += `ren`;
-					}
-					r += `. `;
+					r += ` ${He} has been ready to give birth for some time now. Suppressing birth for so long <span class="red">greatly affects ${his} health.</span> ${He} may <span class="red">have trouble</span> giving birth to ${his} oversized ${(slave.pregType === 1) ? `child` : `children`}. `;
 				} else if (WombBirthReady(slave, slave.pregData.normalBirth) > 0) {
 					healthDamage(slave, 10);
 					r += ` Labor suppressing agents <span class="red">negatively affect ${his} health.</span> `;
diff --git a/src/npc/generate/newSlaveIntro.js b/src/npc/generate/newSlaveIntro.js
index ba09c4b6975eca5e0a07b4f8ee5b40c1b72259c8..96b362af692208f39c9e5ae11ac5c19a208613c2 100644
--- a/src/npc/generate/newSlaveIntro.js
+++ b/src/npc/generate/newSlaveIntro.js
@@ -3463,11 +3463,7 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 							} else {
 								r.push(`be pushed to the ground. Standing over ${him}, staring ${him} down as ${he} peeks around your firm globe of a middle, you order ${him} to worship your pregnancy.`);
 								if (slave.fetish === "pregnancy") {
-									r.push(`${He} complies eagerly. ${He} begins with sucking your popped navel before running ${his} tongue across the taut, smooth surface of your pregnancy. Once ${he} has finished with your belly, ${he} lowers ${himself} under it to begin work on your needy pussy. Before long, ${his} overzealous efforts have you quaking in pleasure, rousing your ${(V.PC.pregType === 1) ? `child` : `children`}. Once ${he} finishes you off, ${he} returns to rubbing your belly, soothing your rowdy child`);
-									if (V.PC.pregType > 1) {
-										r.push(`ren`);
-									}
-									r.push(`and <span class="hotpink">solidifying ${his} place</span> beneath you.`);
+									r.push(`${He} complies eagerly. ${He} begins with sucking your popped navel before running ${his} tongue across the taut, smooth surface of your pregnancy. Once ${he} has finished with your belly, ${he} lowers ${himself} under it to begin work on your needy pussy. Before long, ${his} overzealous efforts have you quaking in pleasure, rousing your ${(V.PC.pregType === 1) ? `child` : `children`}. Once ${he} finishes you off, ${he} returns to rubbing your belly, soothing your rowdy ${(V.PC.pregType === 1) ? `child`:`children`}and <span class="hotpink">solidifying ${his} place</span> beneath you.`);
 									slave.devotion += 15;
 								} else {
 									r.push(`${He} shifts ${his} gaze between your middle and your face, not sure what to do. Losing patience, you toss a tube of cream at ${him}. ${He} shakily massages it onto your stretched skin, missing spots, much to your pleasure. With reason, you force ${him} onto ${his} back, turn around, and plant your needy cunt directly onto ${his} face. Struggling to breath under your weight, ${he} begins eating you out in desperation. After coaxing ${him} to massage your belly as ${he} does, you quickly climax across ${his} face and gently lift yourself off the coughing ${girl}. ${He} now <span class="hotpink">understands ${his} place in life</span> and is <span class="gold">terrified</span> about what ${he} will have to do if ${he} wants to survive.`);
@@ -3630,11 +3626,7 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 										} else {
 											r.push(`You knew ${he} had a breast fetishist and ${his} eagerness to lighten a lactating ${womanP} proves that.`);
 										}
-										r.push(`A kick from within startles you from your thoughts; you pat your gravid middle, reassuring your child`);
-										if (V.PC.pregType > 1) {
-											r.push(`ren`);
-										}
-										r.push(`that you'll make sure to save some milk for them. ${He}'s already starting to <span class="hotpink">show understanding of ${his} place</span> and even <span class="mediumaquamarine">beginning to build trust</span> with you.`);
+										r.push(`A kick from within startles you from your thoughts; you pat your gravid middle, reassuring your ${(V.PC.pregType === 1) ? `child`:`children`} that you'll make sure to save some milk for them. ${He}'s already starting to <span class="hotpink">show understanding of ${his} place</span> and even <span class="mediumaquamarine">beginning to build trust</span> with you.`);
 										slave.devotion += 15;
 										slave.trust += 15;
 									} else {