diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index eb3fbd3de386ae09c5b5c36d00d07c3247cf21fb..22fee18b77b2cb3de900c4c159b3a0279e0eeb8c 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -320,7 +320,7 @@ window.isFertile = function(slave) {
 	if (slave.womb.length > 0 && slave.superfetation < 1 && slave.ovaImplant < 1) { /* currently pregnant without superfetation */
 		return false;
 	} else if (slave.womb.length > 0) { /* temp failure condition to prevent current double preg bug */
-	    return false;
+		return false;
 	} else if (slave.broodmother > 0) { /* currently broodmother */
 		return false;
 	} else if (slave.preg < -1) { /* sterile */
@@ -29923,12 +29923,35 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
+		if (slave.balls > 0) {
+			vignettes.push({
+				text: `an eccentric celebrity chef used ${his} cum in a new pudding recipe,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
+		if (canWalk(slave)) {
+			vignettes.push({
+				text: `${he} slipped and fell in an errant puddle of various bodily fluids,`,
+				type: "health",
+				effect: -1,
+			});
+		}
 		vignettes.push({
 			text: `very little of interest happened because the life of a dairy cow is often really boring,`,
 			type: "rep",
 			effect: 0,
 		});
 	} else if (slave.assignment === "rest" || slave.assignment === "rest in the spa") {
+		switch (slave.behavioralFlaw) {
+			case "anorexic":
+				vignettes.push({
+					text: `with nothing to do, ${he} lies in bed and eats almost nothing,`,
+					type: "health",
+					effect: -1,
+				});
+			break;
+		}
 		if (slave.devotion > 95) {
 			vignettes.push({
 				text: `${he} decided to spend some of ${his} free time to praise you on the streets,`,
@@ -29994,11 +30017,31 @@ window.GetVignette = function GetVignette(slave) {
 			});
 		}
 		if (slave.energy > 95) {
-			vignettes.push({
-				text: `${he} was so horny that ${he} sleepwalked into your room and performed oral sex on you, and then woke up when ${he} bruised ${his} shin,`,
-				type: "health",
-				effect: -1,
-			});
+			if (slave.behavioralFlaw === "odd") {
+				if (slave.amp !== 1 && canSee(slave)) {
+					vignettes.push({
+						text: `you discovered ${him} sketching an image of ${his} genitalia, which you managed to sell,`,
+						type: "cash",
+						effect: 1,
+					});
+				}
+			}
+			if (canWalk(slave)) {
+				if (slave.amp === 0) {
+					vignettes.push({
+						text: `${he} was so horny that ${he} sleepwalked into your room and performed oral sex on you, and then woke up when ${he} bruised ${his} shin,`,
+						type: "health",
+						effect: -1,
+					});
+				}
+				if (slave.releaseRules === "permissive" || slave.releaseRules === "masturbation") {
+					vignettes.push({
+						text: `due to the obvious difficulties in ${his} mobility, ${he} spent a lot of time masturbating in bed,`,
+						type: "health",
+						effect: 0,
+					});
+				}
+			}
 		}
 		if (slave.health < -20) {
 			vignettes.push({
@@ -30014,11 +30057,11 @@ window.GetVignette = function GetVignette(slave) {
 				effect: -1,
 			});
 		}
-		if (V.arcologies[0].FSDegradationist !== "unset") {
+		if (V.arcologies[0].FSPaternalist !== "unset") {
 			vignettes.push({
 				text: `due to being ordered to rest, ${he} enjoyed a great deal of calm and relaxation thanks to your arcology's caretaking nature,`,
 				type: "health",
-				effect: -1,
+				effect: 1,
 			});
 		} else if (V.arcologies[0].FSDegradationist !== "unset") {
 			vignettes.push({
@@ -33323,7 +33366,7 @@ window.AA = function() {
 	if (S.AA >= 6) group = `A respectable number of attack VTOL protect your arcology, split into a few squadrons`;
 	if (S.AA >= 7) support = ` attack ground targets`, W2 = `, rocket pods, and air-to-air missiles,`;
 	if (S.AA >= 8) stealth = `The old skin has been replaced with a radar-absorbent material, making the aircraft difficult to pick up on radar.`;
-	if (S.AA >= 9)  scramble = `The VTOLs can scramble to react to any threat in under three minutes.`;
+	if (S.AA >= 9) scramble = `The VTOLs can scramble to react to any threat in under three minutes.`;
 	if (S.AA >= 10)	PAI = `A piloting AI has been installed, allowing the VTOLs to perform impossible maneuvers that cannot be done by a human pilot. This removes the need for a human in the aircraft altogether.`;
 
 	return `${group}. Several of the landing pads around $arcologies[0].name host groups of four fighters, ready to defend the arcology. ${scramble} The attack VTOL are currently ${W1} with a Gatling cannon${W2} ${W3}${support}. ${TAI} ${PAI} ${engines} ${lock} ${stealth}`;
@@ -33507,7 +33550,7 @@ window.Interactions = function() {
 		else if (V.choice == 3){
 			choice = `$SF.Caps will be conducting corporate sabotage on rival arcologies' businesses. `;
 			if (V.SFTradeShow.CanAttend === -1 && (C.Talk + C.Fun !== 1)) {
-			choice += `"Our interests should see a  @@.yellowgreen;big boost@@, boss."`;}
+			choice += `"Our interests should see a @@.yellowgreen;big boost@@, boss."`;}
 			else { 
 			choice += `"Your @@.yellowgreen;arcology's business prospects should see an improvement@@ this week, <<print PCTitle()>>.`;
 			}}}
@@ -33947,7 +33990,7 @@ window.walkPasts = function(slave, _seed) {
 		} else {
 			t += "being held down and "
 			if (canDoAnal(slave)) {
-				t += "buttfucked  "
+				t += "buttfucked "
 			} else {
 				t += "raped "
 			}
diff --git a/src/SpecialForce/JS.js b/src/SpecialForce/JS.js
index 81b4b131eebb8c3256ee5dac10377e89cce65278..be12853a08415ba941d92583876ab09f048c793a 100644
--- a/src/SpecialForce/JS.js
+++ b/src/SpecialForce/JS.js
@@ -219,7 +219,7 @@ window.AA = function() {
 	if (S.AA >= 6) group = `A respectable number of attack VTOL protect your arcology, split into a few squadrons`;
 	if (S.AA >= 7) support = ` attack ground targets`, W2 = `, rocket pods, and air-to-air missiles,`;
 	if (S.AA >= 8) stealth = `The old skin has been replaced with a radar-absorbent material, making the aircraft difficult to pick up on radar.`;
-	if (S.AA >= 9)  scramble = `The VTOLs can scramble to react to any threat in under three minutes.`;
+	if (S.AA >= 9) scramble = `The VTOLs can scramble to react to any threat in under three minutes.`;
 	if (S.AA >= 10)	PAI = `A piloting AI has been installed, allowing the VTOLs to perform impossible maneuvers that cannot be done by a human pilot. This removes the need for a human in the aircraft altogether.`;
 
 	return `${group}. Several of the landing pads around $arcologies[0].name host groups of four fighters, ready to defend the arcology. ${scramble} The attack VTOL are currently ${W1} with a Gatling cannon${W2} ${W3}${support}. ${TAI} ${PAI} ${engines} ${lock} ${stealth}`;
@@ -403,7 +403,7 @@ window.Interactions = function() {
 		else if (V.choice == 3){
 			choice = `$SF.Caps will be conducting corporate sabotage on rival arcologies' businesses. `;
 			if (V.SFTradeShow.CanAttend === -1 && (C.Talk + C.Fun !== 1)) {
-			choice += `"Our interests should see a  @@.yellowgreen;big boost@@, boss."`;}
+			choice += `"Our interests should see a @@.yellowgreen;big boost@@, boss."`;}
 			else { 
 			choice += `"Your @@.yellowgreen;arcology's business prospects should see an improvement@@ this week, <<= properTitle()>>.`;
 			}}}
diff --git a/src/js/vignettes.tw b/src/js/vignettes.tw
index 925bebce6bcbd0e5e48c72c9061a047efe8e206d..cf8ce1940d560158ace4861ce5821dcfa45112ee 100644
--- a/src/js/vignettes.tw
+++ b/src/js/vignettes.tw
@@ -3302,12 +3302,35 @@ window.GetVignette = function GetVignette(slave) {
 				effect: 1,
 			});
 		}
+		if (slave.balls > 0) {
+			vignettes.push({
+				text: `an eccentric celebrity chef used ${his} cum in a new pudding recipe,`,
+				type: "rep",
+				effect: 1,
+			});
+		}
+		if (canWalk(slave)) {
+			vignettes.push({
+				text: `${he} slipped and fell in an errant puddle of various bodily fluids,`,
+				type: "health",
+				effect: -1,
+			});
+		}
 		vignettes.push({
 			text: `very little of interest happened because the life of a dairy cow is often really boring,`,
 			type: "rep",
 			effect: 0,
 		});
 	} else if (slave.assignment === "rest" || slave.assignment === "rest in the spa" || slave.assignment === "be the Attendant") {
+		switch (slave.behavioralFlaw) {
+			case "anorexic":
+				vignettes.push({
+					text: `with nothing to do, ${he} lies in bed and eats almost nothing,`,
+					type: "health",
+					effect: -1,
+				});
+			break;
+		}
 		if (slave.devotion > 95) {
 			vignettes.push({
 				text: `${he} decided to spend some of ${his} free time to praise you on the streets,`,
@@ -3373,11 +3396,31 @@ window.GetVignette = function GetVignette(slave) {
 			});
 		}
 		if (slave.energy > 95) {
-			vignettes.push({
-				text: `${he} was so horny that ${he} sleepwalked into your room and performed oral sex on you, and then woke up when ${he} bruised ${his} shin,`,
-				type: "health",
-				effect: -1,
-			});
+			if (slave.behavioralFlaw === "odd") {
+				if (slave.amp !== 1 && canSee(slave)) {
+					vignettes.push({
+						text: `you discovered ${him} sketching an image of ${his} genitalia, which you managed to sell,`,
+						type: "cash",
+						effect: 1,
+					});
+				}
+			}
+			if (canWalk(slave)) {
+				if (slave.amp === 0) {
+					vignettes.push({
+						text: `${he} was so horny that ${he} sleepwalked into your room and performed oral sex on you, and then woke up when ${he} bruised ${his} shin,`,
+						type: "health",
+						effect: -1,
+					});
+				}
+				if (slave.releaseRules === "permissive" || slave.releaseRules === "masturbation") {
+					vignettes.push({
+						text: `due to the obvious difficulties in ${his} mobility, ${he} spent a lot of time masturbating in bed,`,
+						type: "health",
+						effect: 0,
+					});
+				}
+			}
 		}
 		if (slave.health < -20) {
 			vignettes.push({
@@ -3393,11 +3436,11 @@ window.GetVignette = function GetVignette(slave) {
 				effect: -1,
 			});
 		}
-		if (V.arcologies[0].FSDegradationist !== "unset") {
+		if (V.arcologies[0].FSPaternalist !== "unset") {
 			vignettes.push({
 				text: `due to being ordered to rest, ${he} enjoyed a great deal of calm and relaxation thanks to your arcology's caretaking nature,`,
 				type: "health",
-				effect: -1,
+				effect: 1,
 			});
 		} else if (V.arcologies[0].FSDegradationist !== "unset") {
 			vignettes.push({
diff --git a/src/js/walkPastJS.tw b/src/js/walkPastJS.tw
index 5e9f2787b305557ba1bfb37dc7cfaf9cc05e11ca..a55bbecccd4274124401ae93c58c8d1368c55ad5 100644
--- a/src/js/walkPastJS.tw
+++ b/src/js/walkPastJS.tw
@@ -307,7 +307,7 @@ window.walkPasts = function(slave, _seed) {
 		} else {
 			t += "being held down and "
 			if (canDoAnal(slave)) {
-				t += "buttfucked  "
+				t += "buttfucked "
 			} else {
 				t += "raped "
 			}
diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw
index 3bc3546f7663df160d05351bcf0f0c96aa962fd4..2828a3b833d14282bac95de1e25314cdee52596d 100644
--- a/src/npc/fFeelings.tw
+++ b/src/npc/fFeelings.tw
@@ -157,50 +157,50 @@ My favorite part of my body i<<s>>
 			my tight little anu<<s>>, I like feeling it <<s>>tretch to take a fuck. It's //so// much better than my <<if $activeSlave.dick > 0>>cock<<else>>pu<<ss>>y<</if>>. It brings me so much plea<<s>>ure... and pain... and... I'm <<s>>orry, <<Master>> what were we talking about again? Oh! Right.
 		<</if>>
 	<<elseif ($activeSlave.sexualFlaw == "breeder") && ($activeSlave.fetishStrength > 95)>>
-        <<if ($activeSlave.bellyPreg >= 600000)>>
-            ... um... our impo<<ss>>ibly pregnant belly, of cour<<s>>e. We love being <<s>>o packed full with life that we're more baby than woman, now. And the way our belly keep<<s>> our <<s>>lutty preggo bodie<<s>> <<s>>tuck to the floor! We're <<s>>o hot ju<<s>>t thinking about it.
-            <<if $activeSlave.pregSource == -1>>
-                Thank you for breeding u<<s>>, <<Master>>! Our womb i<<s>> your<<s>> to impregnate.
-            <</if>>
-            What? Oh, I'm thinking of my<<s>>elf and my <<if ($activeSlave.fetus_count >=2) || ($activeSlave.broodmother >=1)>> babie<<s>> <<else>> baby <</if>> as one person again, aren't I? I'm <<s>>orry, <<Master>>. It'<<s>> ju<<s>>t so hard to remember when my womb i<<s>> <<s>>o much more than I am in every way.
-        <<elseif ($activeSlave.bellyPreg >= 300000)>>
-            ... um... our ma<<ss>>ive pregnant belly, of cour<<s>>e. We love feeling our womb <<s>>well with life. It<<s>> so hard to move now! We're <<s>>o hot ju<<s>>t thinking about it.
-            <<if $activeSlave.pregSource == -1>>
-                Thank you for breeding u<<s>>, <<Master>>! Our womb i<<s>> your<<s>> to impregnate.  
-            <</if>>
-            What? Oh, I'm thinking of my<<s>>elf and my <<if ($activeSlave.fetus_count >=2) || ($activeSlave.broodmother >=1)>> babie<<s>> <<else>> baby <</if>> as one person again, aren't I? I'm <<s>>orry, <<Master>>. It'<<s>> ju<<s>>t so hard to remember when my womb i<<s>> <<s>>o much more than I am in every way.
-        <<elseif ($activeSlave.bellyPreg >= 15000)>>
-            ... um... our bulging pregnant belly, of cour<<s>>e. We love feeling our womb <<s>>well with life.
-            <<if $activeSlave.pregSource == -1>>
-                Thank you for breeding u<<s>>, <<Master>>! Our womb i<<s>> your<<s>> to impregnate.  
-            <</if>>
-            What? Oh, I'm thinking of my<<s>>elf and my <<if ($activeSlave.fetus_count >=2) || ($activeSlave.broodmother >=1)>> babie<<s>> <<else>> baby <</if>> as one person again, aren't I? I'm <<s>>orry, <<Master>>. It'<<s>> ju<<s>>t so hard to remember when my womb i<<s>> <<s>>o much more than I am in every way.
-        <<elseif ($activeSlave.bellyPreg >= 100)>>
-            ... um... our pregnant belly, of cour<<s>>e.
-            <<if $activeSlave.pregSource == -1>>
-                Thank you for breeding u<<s>>, <<Master>>! Our womb i<<s>> your<<s>> to impregnate.
-            <</if>>
-            What? Oh, I'm thinking of my<<s>>elf and my <<if ($activeSlave.fetus_count >=2)>> babie<<s>> <<else>> baby <</if>> as one person again, aren't I? I'm <<s>>orry, <<Master>>. It'<<s>> ju<<s>>t so hard to remember when my womb i<<s>> <<s>>o much more than I am in every way.
-        <<elseif ($activeSlave.pregKnown == 1)>>
-            my belly, now that it ha<<s>> <<if ($activeSlave.fetus_count >=2)>> the babie<<s>> <<else>> a baby <</if>> growing in it. Just thinking about <<s>>welling up bigger and bigger has me quivering. I wi<<s>>h we could keep filling me with babie<<s>> forever.
-            <<if $activeSlave.pregSource == -1>>
-                Thank you for impregnating me, <<Master>>!
-            <</if>>
-        <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 4)>>
-            my big breeder ball<<s>>. I ju<<s>>t want to fill other <<s>>lave<<s>> with babie<<s>> forever.
-        <<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>>
-            my cock. I ju<<s>>t want to fill other <<s>>lave<<s>> with babie<<s>> forever.
-        <<elseif ($activeSlave.weight > 95)>>
-            my big tummy. Think of how many babie<<s>> we could <<s>>tretch it over! No, really. Plea<<s>>e, <<Master>>. Think about it.
-        <<elseif ($activeSlave.weight > 10)>>
-            my plu<<sh>> tummy. Think of how many babie<<s>> we could <<s>>tretch it over! No, really. Plea<<s>>e, <<Master>>. Think about it.
-        <<elseif ($activeSlave.birthsTotal > 10) && isFertile($activeSlave)>>
-            my womb. It'<<s>> made <<s>>o many babie<<s>>. It feel<<s>> <<s>>o sad and empty right now. I really wi<<s>>h we could just keep it stuffed full of babie<<s>> forever.
-        <<elseif isFertile($activeSlave)>>
-            my womb. It<<s>> ready, <<Master>>. It feel<<s>> <<s>>o sad and empty right now. I really wi<<s>>h we could just keep it stuffed full of babie<<s>> forever.
-        <<else>>
-            my tight tummy, I like to imagine how it would <<s>>well if I got pregnant. I... I really wi<<sh>> we could put a baby in me, <<Master>>.
-        <</if>>
+		<<if ($activeSlave.bellyPreg >= 600000)>>
+			... um... our impo<<ss>>ibly pregnant belly, of cour<<s>>e. We love being <<s>>o packed full with life that we're more baby than woman, now. And the way our belly keep<<s>> our <<s>>lutty preggo bodie<<s>> <<s>>tuck to the floor! We're <<s>>o hot ju<<s>>t thinking about it.
+			<<if $activeSlave.pregSource == -1>>
+				Thank you for breeding u<<s>>, <<Master>>! Our womb i<<s>> your<<s>> to impregnate.
+			<</if>>
+			What? Oh, I'm thinking of my<<s>>elf and my <<if ($activeSlave.fetus_count >=2) || ($activeSlave.broodmother >=1)>> babie<<s>> <<else>> baby <</if>> as one person again, aren't I? I'm <<s>>orry, <<Master>>. It'<<s>> ju<<s>>t so hard to remember when my womb i<<s>> <<s>>o much more than I am in every way.
+		<<elseif ($activeSlave.bellyPreg >= 300000)>>
+			... um... our ma<<ss>>ive pregnant belly, of cour<<s>>e. We love feeling our womb <<s>>well with life. It<<s>> so hard to move now! We're <<s>>o hot ju<<s>>t thinking about it.
+			<<if $activeSlave.pregSource == -1>>
+				Thank you for breeding u<<s>>, <<Master>>! Our womb i<<s>> your<<s>> to impregnate.
+			<</if>>
+			What? Oh, I'm thinking of my<<s>>elf and my <<if ($activeSlave.fetus_count >=2) || ($activeSlave.broodmother >=1)>> babie<<s>> <<else>> baby <</if>> as one person again, aren't I? I'm <<s>>orry, <<Master>>. It'<<s>> ju<<s>>t so hard to remember when my womb i<<s>> <<s>>o much more than I am in every way.
+		<<elseif ($activeSlave.bellyPreg >= 15000)>>
+			... um... our bulging pregnant belly, of cour<<s>>e. We love feeling our womb <<s>>well with life.
+			<<if $activeSlave.pregSource == -1>>
+				Thank you for breeding u<<s>>, <<Master>>! Our womb i<<s>> your<<s>> to impregnate.
+			<</if>>
+			What? Oh, I'm thinking of my<<s>>elf and my <<if ($activeSlave.fetus_count >=2) || ($activeSlave.broodmother >=1)>> babie<<s>> <<else>> baby <</if>> as one person again, aren't I? I'm <<s>>orry, <<Master>>. It'<<s>> ju<<s>>t so hard to remember when my womb i<<s>> <<s>>o much more than I am in every way.
+		<<elseif ($activeSlave.bellyPreg >= 100)>>
+			... um... our pregnant belly, of cour<<s>>e.
+			<<if $activeSlave.pregSource == -1>>
+				Thank you for breeding u<<s>>, <<Master>>! Our womb i<<s>> your<<s>> to impregnate.
+			<</if>>
+			What? Oh, I'm thinking of my<<s>>elf and my <<if ($activeSlave.fetus_count >=2)>> babie<<s>> <<else>> baby <</if>> as one person again, aren't I? I'm <<s>>orry, <<Master>>. It'<<s>> ju<<s>>t so hard to remember when my womb i<<s>> <<s>>o much more than I am in every way.
+		<<elseif ($activeSlave.pregKnown == 1)>>
+			my belly, now that it ha<<s>> <<if ($activeSlave.fetus_count >=2)>> the babie<<s>> <<else>> a baby <</if>> growing in it. Just thinking about <<s>>welling up bigger and bigger has me quivering. I wi<<s>>h we could keep filling me with babie<<s>> forever.
+			<<if $activeSlave.pregSource == -1>>
+				Thank you for impregnating me, <<Master>>!
+			<</if>>
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 4)>>
+			my big breeder ball<<s>>. I ju<<s>>t want to fill other <<s>>lave<<s>> with babie<<s>> forever.
+		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls > 0)>>
+			my cock. I ju<<s>>t want to fill other <<s>>lave<<s>> with babie<<s>> forever.
+		<<elseif ($activeSlave.weight > 95)>>
+			my big tummy. Think of how many babie<<s>> we could <<s>>tretch it over! No, really. Plea<<s>>e, <<Master>>. Think about it.
+		<<elseif ($activeSlave.weight > 10)>>
+			my plu<<sh>> tummy. Think of how many babie<<s>> we could <<s>>tretch it over! No, really. Plea<<s>>e, <<Master>>. Think about it.
+		<<elseif ($activeSlave.birthsTotal > 10) && isFertile($activeSlave)>>
+			my womb. It'<<s>> made <<s>>o many babie<<s>>. It feel<<s>> <<s>>o sad and empty right now. I really wi<<s>>h we could just keep it stuffed full of babie<<s>> forever.
+		<<elseif isFertile($activeSlave)>>
+			my womb. It<<s>> ready, <<Master>>. It feel<<s>> <<s>>o sad and empty right now. I really wi<<s>>h we could just keep it stuffed full of babie<<s>> forever.
+		<<else>>
+			my tight tummy, I like to imagine how it would <<s>>well if I got pregnant. I... I really wi<<sh>> we could put a baby in me, <<Master>>.
+		<</if>>
 	<<elseif ($activeSlave.sexualFlaw == "breast growth") && ($activeSlave.fetishStrength > 95)>>
 		<<if ($activeSlave.boobs > 10000)>>
 			my colo<<ss>>al boobie<<s>>, <<Master>>. <<S>>ometime<<s>>, I think I //am// my boobie<<s>>. I mean, they're <<s>>o much more me than the re<<s>>t of 'me,' right? Literally. They're bigger than the re<<s>>t of my body and the only thing that would make me happier i<<s>> if they were even //bigger.//	
diff --git a/src/npc/fPCImpreg.tw b/src/npc/fPCImpreg.tw
index 3dda2dc5009782eb050adbe5607ac68043f9e287..c35fde2c6e718ca3521a9934115f2f22ca645dc9 100644
--- a/src/npc/fPCImpreg.tw
+++ b/src/npc/fPCImpreg.tw
@@ -4,9 +4,9 @@
 <<set _bonus = random(6,20)>>
 
 <<if $activeSlave.mpreg == 1>>
-<<set $activeSlave.analCount += _bonus+1, $analTotal += _bonus+1>>
+	<<set $activeSlave.analCount += _bonus+1, $analTotal += _bonus+1>>
 <<else>>
-<<set $activeSlave.vaginalCount += _bonus+1, $vaginalTotal += _bonus+1>>
+	<<set $activeSlave.vaginalCount += _bonus+1, $vaginalTotal += _bonus+1>>
 <</if>>
 
 You call $him over so you can
@@ -39,9 +39,9 @@ You call $him over so you can
 		The tattoos on $his abdomen ask you to, after all.
 	<</if>>
 
-	<<if  $activeSlave.clit == 1>>
+	<<if $activeSlave.clit == 1>>
 		$His big clit peeks out from under its hood.
-	<<elseif  $activeSlave.clit > 2>>
+	<<elseif $activeSlave.clit > 2>>
 		$His huge clit is impossible to miss.
 	<</if>>
 
@@ -59,10 +59,10 @@ You call $him over so you can
 	<<else>>
 		<<set $activeSlave.vagina = 1>>
 	<</if>>
-	<<set  $activeSlave.devotion += 15>>
+	<<set $activeSlave.devotion += 15>>
 <<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 	$He cries with joy and presents $his fertile <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> for breeding. $He sobs with happiness when $he feels your hot seed<<if $PC.balls == 3>> filling $him until $his belly is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>. $He spends the rest of the day considering $his own stomach with pride. This new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@
-	<<set  $activeSlave.devotion += 10>>
+	<<set $activeSlave.devotion += 10>>
 <<elseif ($activeSlave.devotion > 20) && ($activeSlave.vagina == 0 || ($activeSlave.anus == 0 && $activeSlave.mpreg == 1))>>
 	$He accepts your orders without comment and presents $his virgin <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> for fertilization. $He gasps in shock when $he feels your hot seed<<if $PC.balls == 3>> filling $him until $his belly is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<</if>>. $He spends the rest of the day struggling with roiling emotions. Since $he is already well broken, this new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> has been broken in, and there's a good chance $he's pregnant.@@
 	<<if $activeSlave.mpreg == 1>>
@@ -70,7 +70,7 @@ You call $him over so you can
 	<<else>>
 		<<set $activeSlave.vagina = 1>>
 	<</if>>
-	<<set  $activeSlave.devotion += 10>>
+	<<set $activeSlave.devotion += 10>>
 <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.vagina == 0 || ($activeSlave.anus == 0 && $activeSlave.mpreg == 1))>>
 	$He is clearly unhappy at losing $his pearl of great price to you; this probably isn't what $he imagined $his first real sex would be like. Worse, $he knows $he's fertile and realizes $he'll likely get pregnant. Nevertheless, this new connection with $his <<= WrittenMaster($activeSlave)>> @@.hotpink;increases $his devotion to you.@@ @@.lime;$His <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> has been broken in.@@
 	<<if $activeSlave.mpreg == 1>>
@@ -78,7 +78,7 @@ You call $him over so you can
 	<<else>>
 		<<set $activeSlave.vagina = 1>>
 	<</if>>
-	<<set  $activeSlave.devotion += 4>>
+	<<set $activeSlave.devotion += 4>>
 <<elseif ($activeSlave.vagina == 0 || ($activeSlave.anus == 0 && $activeSlave.mpreg == 1))>>
 	As you anticipated, $he refuses to give you $his virginity. And as you expected, $he is unable to resist you. $He cries as your cock opens $his fresh, tight hole. Afterward, $he <<if $activeSlave.amp != 1>>clutches $his stomach<<else>>lies there<</if>> and sobs, horrified by the knowledge that $he's probably carrying $his rapist's child. The rape @@.mediumorchid;decreases $his devotion to you@@ and @@.gold;fills $him with fear.@@ @@.lime;$His <<if $activeSlave.mpreg == 1>>asshole<<else>>pussy<</if>> has been broken in.@@
 	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 5>>
@@ -103,7 +103,7 @@ You call $him over so you can
 <<elseif ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 	$He comes submissively over, smiling a little submissive smile, and spreads $himself for you. You take $him on the couch next to your desk in the missionary position. $He hugs $his torso to you and $his breasts press against your chest; you can feel $his heart beating hard. As the sex reaches its climax your semen<<if $PC.balls == 3>> fills $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pours into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pours into $him<<else>> jets into $his welcoming depths<</if>> as $he begs you to use $his unworthy body to make a new slave.
 <<elseif $activeSlave.devotion < -20>>
-	$He tries to refuse, so you bend the disobedient slave over your desk and take  $him hard from behind. $His breasts slide back and forth across the desk. You give $his buttocks some nice hard swats as you pound $him. $He grunts and moans but knows better than to try to get away. $He begs you not to cum inside $him, knowing $he's fertile, and sobs when $he feels you<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<<else>> blow your load<</if>> despite $his pleas.
+	$He tries to refuse, so you bend the disobedient slave over your desk and take $him hard from behind. $His breasts slide back and forth across the desk. You give $his buttocks some nice hard swats as you pound $him. $He grunts and moans but knows better than to try to get away. $He begs you not to cum inside $him, knowing $he's fertile, and sobs when $he feels you<<if $PC.balls == 3>> filling $him until $his stomach is distended and wobbling with your cum<<elseif $PC.balls == 2>> pouring into $him until $he is stuffed with your cum<<elseif $PC.balls == 1>> pouring into $him<<else>> blow your load<</if>> despite $his pleas.
 <<elseif $activeSlave.devotion <= 20>>
 	$He obeys, lying on the couch next to your desk with $his legs spread. You kneel on the ground and enter $him, a hand on each of $his legs to give you purchase. The pounding is hard and fast, and $he gasps and whines. You reach a hand down to maul $his breasts. $He begs you not to cum inside $him, knowing $he's fertile, but soon loses track of $his fears as $he enjoys $himself. $He bites $his lip and moans as $he climaxes. You fill $his squeezing fuckhole<<if $PC.balls == 3>> far beyond capacity<<elseif $PC.balls == 2>> beyond capacity<<elseif $PC.balls == 1>> to capacity<</if>> with your cum; $he realizes what you've done with a gasp and a worried look.
 <<else>>
diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw
index 0fd9d8acc19ab98e695f26fd1bfc29b26d20d9ce..7eed557e8f0cc523f148e87c7fc132159e3d2cc3 100644
--- a/src/pregmod/fFeet.tw
+++ b/src/pregmod/fFeet.tw
@@ -284,9 +284,9 @@ You call $activeSlave.slaveName to your office, telling $his to use $his feet to
 	<<if $activeSlave.amp == -2 || $activeSlave.amp == -5>>
 		then pour lubricant onto your hands, applying it to $his elegant artificial feet. 
 	<<elseif $activeSlave.amp == -4>>
-		then pour lubricant onto your hands, applying  it to $his deadly artificial feet. 
+		then pour lubricant onto your hands, applying it to $his deadly artificial feet. 
 	<<elseif $activeSlave.amp == -1>>
-		then pour lubricant onto your hands, applying  it to $his artificial feet
+		then pour lubricant onto your hands, applying it to $his artificial feet
 	<<else>>
 		then pour lubricant onto your hands, massaging it into $his $activeSlave.skin feet: rubbing $his arches, soles, and $his toes. 
 	<</if>>
@@ -354,7 +354,7 @@ You call $activeSlave.slaveName to your office, telling $his to use $his feet to
 					erect _dick cock,
 				<</if>>
 			<<else>>
-				soft and dripping _dick <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>caged  <</if>>dick ,
+				soft and dripping _dick <<if ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>caged <</if>>dick ,
 			<</if>> 
 			<<if $activeSlave.balls > 0 && $activeSlave.scrotum > 0>>
 				<<if $activeSlave.vagina >= 0>>
@@ -374,7 +374,7 @@ You call $activeSlave.slaveName to your office, telling $his to use $his feet to
 	<<elseif $activeSlave.fetish == "humiliation" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		$activeSlave.slaveName slowly strokes your cock with $his feet, getting off on the degrading use of $his feet and avoiding your gaze. $He is showing an embarrassed smile<<if $activeSlave.skin == 'black'>>, and if $his skin was any lighter you would see $his<<else>> and<</if>> bright blushing cheeks. 
 	<<elseif $activeSlave.fetish == "boobs" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		As $activeSlave.slaveName deftly strokes your cock with $his feet, $his hands plays with $his  <<if $activeSlave.boobs < 300>>erect nipples. <<elseif $activeSlave.boobs < 500>>small chest. <<elseif $activeSlave.boobs >= 18000>>_boobs breasts, though $he can't reach $his nipples. <<else>>_boobs breasts and erect nipples. <</if>> $He is certainly giving you plenty of sexy options for you to watch. 
+		As $activeSlave.slaveName deftly strokes your cock with $his feet, $his hands plays with $his <<if $activeSlave.boobs < 300>>erect nipples. <<elseif $activeSlave.boobs < 500>>small chest. <<elseif $activeSlave.boobs >= 18000>>_boobs breasts, though $he can't reach $his nipples. <<else>>_boobs breasts and erect nipples. <</if>> $He is certainly giving you plenty of sexy options for you to watch. 
 	<<elseif $activeSlave.fetish == "sadist" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		$activeSlave.slaveName is a sadist, and $his deft footjob toys with the boundaries of pain and pleasure. $His devoted yet belittling <<if canSee($activeSlave)>>gaze carefully watches your face<<else>>expressions are clear as $he feels<</if>> for every reaction. 
 	<<elseif $activeSlave.fetish == "dom" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
diff --git a/src/pregmod/fLickPussy.tw b/src/pregmod/fLickPussy.tw
index a29259c202ab7a54b5311cef7ba4c74ce78edb60..d9eb207f270f607bd6ce381047ee1d21ced40b0b 100644
--- a/src/pregmod/fLickPussy.tw
+++ b/src/pregmod/fLickPussy.tw
@@ -3,21 +3,21 @@
 <<run clearSummaryCache($activeSlave)>>
 <<setLocalPronouns $activeSlave>>
 
-<<set _devotion = $activeSlave.devotion>>   /*for brevity*/
+<<set _devotion = $activeSlave.devotion>> /*for brevity*/
 
 <<if canWalk($activeSlave)>>
-    You summon $activeSlave.slaveName to your office and order $him to lie down on the couch. $He does so
-    <<if _devotion > 95>>
-        with a smile, skipping over to give you a quick kiss before $he complies with your request.
-    <<elseif _devotion > 50>>
-        without hesitation, ready to serve and obey.
-    <<elseif _devotion > -50>>
-        with a look of trepidation, as though afraid you're going to hurt $him.
-    <<elseif _devotion <= -50>>
-        with a look of hatred, though only after you threaten to punish $him.
-    <</if>>
+	You summon $activeSlave.slaveName to your office and order $him to lie down on the couch. $He does so
+	<<if _devotion > 95>>
+		with a smile, skipping over to give you a quick kiss before $he complies with your request.
+	<<elseif _devotion > 50>>
+		without hesitation, ready to serve and obey.
+	<<elseif _devotion > -50>>
+		with a look of trepidation, as though afraid you're going to hurt $him.
+	<<elseif _devotion <= -50>>
+		with a look of hatred, though only after you threaten to punish $him.
+	<</if>>
 <<else>>
-    You have $activeSlave.slaveName brought into your office and placed on your couch.
+	You have $activeSlave.slaveName brought into your office and placed on your couch.
 <</if>>
 
 After $he is situated, you go over to $him<<if $activeSlave.clothes != "no clothing">> and take off $his clothing, causing $him to <<if _devotion > 50>>give you a soft smile<<else>>give you an angry glare<</if>><</if>>. You suddenly grab $his hips and pull $his crotch to your face, causing $him to give a shriek of surprise. Looking at $him directly in the eyes, you begin to run your tongue along $his labia, drawing a soft moan from $him. The combination of the pleasure and the intense look from the <<if $PC.title == 0>>wo<</if>>man $he<<if _devotion > 95>> loves <<elseif _devotion > 50>>'s accepted as $his <<= WrittenMaster($activeSlave)>><<else>> hates/*not sure what to use for "reluctant"*/<</if>> makes $him blush, but you don't let up. You give $his clit a few expiremental tweaks, causing $his moans to intensify<<if canWalk($activeSlave)>> and $his legs to tighten around your head<</if>>. Before $he cums, though, you pull back, causing $him to whine in frustration. You begin again, then pull back again just before $he orgasms. You repeat this several more times, each time causing $him to become more and more frustrated. Finally, one last stroke of your tongue causes $him to go over the edge, making $him scream out <<if _devotion > 50>>your name<</if>> in ecstasy. You send $him back to $his assignment before calling in another slave to clean up the mess.
diff --git a/src/pregmod/fNippleFuck.tw b/src/pregmod/fNippleFuck.tw
index 9effce042e5475a388348c1b6f3a2c11639e92f5..d9741c99ee3bf99c3c191f9383e024040a897d7b 100644
--- a/src/pregmod/fNippleFuck.tw
+++ b/src/pregmod/fNippleFuck.tw
@@ -36,7 +36,7 @@ Once you’re satisfied, you line up your dick with $his right nipple and slowly
 <<else>>
 	$His
 <</if>>
-breast flesh grips you tightly. A few experimental pumps draws gasps from $him before you start to thrust in earnest. Soon, the room is filled with $his moaning and the sound of flesh on flesh.  
+breast flesh grips you tightly. A few experimental pumps draws gasps from $him before you start to thrust in earnest. Soon, the room is filled with $his moaning and the sound of flesh on flesh.
 
 
 <<if $activeSlave.fetish == "boobs" && $activeSlave.fetishKnown == 1>>
@@ -57,7 +57,7 @@ breast flesh grips you tightly. A few experimental pumps draws gasps from $him b
 	$He turns $his gaze away from you as a blush suffuses $his cheeks and does $his best to suppress $his moans.
 <</if>>
 
-As your orgasm begins to build, you roughly grasp $his shoulders and begin to pick up the pace.  
+As your orgasm begins to build, you roughly grasp $his shoulders and begin to pick up the pace.
 
 <<if $activeSlave.fetish == "boobs" && $activeSlave.fetishKnown == 1>>
 	As $he reaches $his climax, $his eyes roll back into $his head and $he quivers in delight at the intense breastgasm $he just sustained.
diff --git a/src/pregmod/fPat.tw b/src/pregmod/fPat.tw
index a4d91b5a1b3ffd1fd1cac1a196ee2fb74656cb57..10672ed148c00a2e413b9ceb57abb24d07a502e9 100644
--- a/src/pregmod/fPat.tw
+++ b/src/pregmod/fPat.tw
@@ -116,23 +116,23 @@ You tell $activeSlave.slaveName to
 
 You walk around $him, drawing closer and slowly resting your hand on $his head. You let it rest for a few seconds to get $him accustomed to your touch.
 <<if ($activeSlave.fetish == "mindbroken")>>
-	Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your poor mentally shattered slave's inability to resist you. $He initially reacts slightly to your physical touch, but soon stops reacting completely.  Nevertheless, you continue to gingerly stroke $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>shaven scalp <<else>>hair <</if>>, as you gently press $his body into your chest<<if $activeSlave.amp == 1>> and onto your lap<</if>>. The warmth from your slave's body, and the action of petting $his head, combined with the sound of $his breathing, allow you to feel more relaxed by the minute.
+	Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your poor mentally shattered slave's inability to resist you. $He initially reacts slightly to your physical touch, but soon stops reacting completely. Nevertheless, you continue to gingerly stroke $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>shaven scalp <<else>>hair <</if>>, as you gently press $his body into your chest<<if $activeSlave.amp == 1>> and onto your lap<</if>>. The warmth from your slave's body, and the action of petting $his head, combined with the sound of $his breathing, allow you to feel more relaxed by the minute.
 <<elseif ($activeSlave.relationship == -3) && $activeSlave.devotion+$activeSlave.trust >= 175>>
-	Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your slave's utterly willing submission. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> and finally onto your lap<</if>>, relaxing as $he feels your caress.  As $he shifts $his weight to your chest, $he feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes $his lips.  You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a <<if $PC.title == 1>>man and his <<else>>woman and her <</if>>devoted and content wife.
+	Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your slave's utterly willing submission. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> and finally onto your lap<</if>>, relaxing as $he feels your caress. As $he shifts $his weight to your chest, $he feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes $his lips. You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a <<if $PC.title == 1>>man and his <<else>>woman and her <</if>>devoted and content wife.
 <<elseif ($activeSlave.relationship == -2)>>
-	Tenderly and lovingly you brush your fingers along $his head, for a moment, appreciating how easily your slave submits to your desire to pat her head. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> allowing you to move $him onto your lap<</if>>, relaxing as $he feels your caresses.  As $his weight falls onto you, all of the stress from $his body melts away, and a small, respectful sigh escapes $his pursed lips.  You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave.  For now, just for now, you are just a <<if $PC.title == 1>>man and his <<else>>woman and her<</if>>devoted and content servant.
+	Tenderly and lovingly you brush your fingers along $his head, for a moment, appreciating how easily your slave submits to your desire to pat her head. $He slowly leans $his body closer and closer to you<<if $activeSlave.amp == 1>> allowing you to move $him onto your lap<</if>>, relaxing as $he feels your caresses. As $his weight falls onto you, all of the stress from $his body melts away, and a small, respectful sigh escapes $his pursed lips. You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave. For now, just for now, you are just a <<if $PC.title == 1>>man and his <<else>>woman and her<</if>>devoted and content servant.
 <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.amp != 1)>>
-	As you start to touch $him $he smiles at you and takes your hand, following its movements. You tenderly and lovingly kiss it and let it rest on the side of $his head, before continuing with your ministrations.  As opposed to your more submissive slaves, $activeSlave.slaveName takes an active role in your petting, gently guiding where your hand goes along $his head.  You enjoy the feel of $his hand on yours, as well as $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>smooth scalp<<else>> hair<</if>>.
+	As you start to touch $him $he smiles at you and takes your hand, following its movements. You tenderly and lovingly kiss it and let it rest on the side of $his head, before continuing with your ministrations. As opposed to your more submissive slaves, $activeSlave.slaveName takes an active role in your petting, gently guiding where your hand goes along $his head. You enjoy the feel of $his hand on yours, as well as $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>smooth scalp<<else>> hair<</if>>.
 <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-	$He stiffens at your touch but slowly relaxes at the sensation of your hand on $his head. You tenderly and lovingly stroke your fingers along $his scalp, enjoying the feeling of your slave's subservience.  $He gently, submissively, presses $his head against your hand, like a dog.  As you continue <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>kneading $his shaved scalp<<else>>stroking $his hair<</if>>, $he starts to clutch $his thighs, and if you listen you can hear subdued whimpers.  $He looks up at you with adoring eyes, and relishes in the pureness of this act as $his master's pet to $his beloved <<= WrittenMaster($activeSlave)>>.
+	$He stiffens at your touch but slowly relaxes at the sensation of your hand on $his head. You tenderly and lovingly stroke your fingers along $his scalp, enjoying the feeling of your slave's subservience. $He gently, submissively, presses $his head against your hand, like a dog. As you continue <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>kneading $his shaved scalp<<else>>stroking $his hair<</if>>, $he starts to clutch $his thighs, and if you listen you can hear subdued whimpers. $He looks up at you with adoring eyes, and relishes in the pureness of this act as $his master's pet to $his beloved <<= WrittenMaster($activeSlave)>>.
 <<elseif $activeSlave.devotion > 50>>
-	$He accepts it with devotion, leaning back into your gentle caresses. You tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's willingness to set aside her dignity for headpats. $He leans $his body backward, pressing $himself against you. You can feel the intense heat from $his body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>.  You take your time enjoying the sensation of <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>rubbing your slave's smooth scalp<<else>>gently running your fingers through your slave's hair<</if>>, and your slave smiles happily as you do.   As you continue with your ministrations, you can see all of the stress present in your slave's shoulders dissipate, and you feel a good deal of your own tension start to melt away as well.
+	$He accepts it with devotion, leaning back into your gentle caresses. You tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's willingness to set aside her dignity for headpats. $He leans $his body backward, pressing $himself against you. You can feel the intense heat from $his body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>. You take your time enjoying the sensation of <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>rubbing your slave's smooth scalp<<else>>gently running your fingers through your slave's hair<</if>>, and your slave smiles happily as you do. As you continue with your ministrations, you can see all of the stress present in your slave's shoulders dissipate, and you feel a good deal of your own tension start to melt away as well.
 <<elseif $activeSlave.devotion > 20>>
-	$He willingly accepts it. As you tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's roiling emotions, and finally submission. You can still sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch.  As you continue your ministrations, your slave slowly, and with more then a bit of uncertainty, finally starts to relax.  $He looks at you with confusion and trepidation.  Your eyes betray nothing however, you simply smile and press $his head into your <<if $PC.boobs == 1>>soft breasts<<else>>masculine chest<</if>>, all the while enjoying the feeling of your <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>hands gliding over $his smooth head<<else>>fingers gliding through $his hair<</if>>.
+	$He willingly accepts it. As you tenderly and lovingly brush your fingers along $his head, enjoying the feeling of your slave's roiling emotions, and finally submission. You can still sense considerable turmoil in the <<if ($activeSlave.physicalAge > 30)>>woman<<else>>$girl<</if>>; $he's doing $his duty as a slave by complying with your wishes, and is probably struggling with the mixture of resistance, obedience and perhaps even devotion forced to the forefront of $his mind by your touch. As you continue your ministrations, your slave slowly, and with more then a bit of uncertainty, finally starts to relax. $He looks at you with confusion and trepidation. Your eyes betray nothing however, you simply smile and press $his head into your <<if $PC.boobs == 1>>soft breasts<<else>>masculine chest<</if>>, all the while enjoying the feeling of your <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>hands gliding over $his smooth head<<else>>fingers gliding through $his hair<</if>>.
 <<elseif $activeSlave.devotion >= -20 && $activeSlave.trust < -20>>
-	$He shakes at your touch fearfully. As you tenderly brush your fingers down $his unresisting head, you appreciate this expression of your slave's subservience, $his eagerness to avoid punishment making $him stiffen, $his nervousness easily apparent. You continue stroking $him, enjoying $his fear, as the physical intimacy slowly does its work. $He starts to relax, $his resistance easing as $his eyes start to close.  Your hands continue to gently scratch at $his scalp, and you enjoy the sensation as well as the feeling of power over your hapless slave.  Gently, slowly, so not as to spook $him, you ease your property's head back into your <<if $PC.boobs == 1>>breasts<<else>>chest<</if>>.  Nevertheless your slave starts at the action, but at your insistence finally gives in to the motion, and finally relaxes against you.
+	$He shakes at your touch fearfully. As you tenderly brush your fingers down $his unresisting head, you appreciate this expression of your slave's subservience, $his eagerness to avoid punishment making $him stiffen, $his nervousness easily apparent. You continue stroking $him, enjoying $his fear, as the physical intimacy slowly does its work. $He starts to relax, $his resistance easing as $his eyes start to close. Your hands continue to gently scratch at $his scalp, and you enjoy the sensation as well as the feeling of power over your hapless slave. Gently, slowly, so not as to spook $him, you ease your property's head back into your <<if $PC.boobs == 1>>breasts<<else>>chest<</if>>. Nevertheless your slave starts at the action, but at your insistence finally gives in to the motion, and finally relaxes against you.
 <<elseif $activeSlave.trust < -50>>
-	$He is nearly frozen with fear and does not resist as you tenderly and lovingly brush your fingers along $his head, enjoying your slave's complete and utter submission to you. In fact, $he barely reacts at all.  But being an arcology owner has taught you many things, not least of which is patience.  With time and a gentle hand, your slave's shoulders slowly start to relax, so slowly if you weren't paying attention you wouldn't have noticed.  With a sense of satisfaction, you continue your actions, enjoying the feeling of your <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>hand gliding over $his smooth head<<else>>fingers combing through $his hair and gently scritching $his scalp<</if>>.  You settle with this for now, knowing that any attempt at further intimacy will likely scare your slave off, but you enjoy it nonetheless.
+	$He is nearly frozen with fear and does not resist as you tenderly and lovingly brush your fingers along $his head, enjoying your slave's complete and utter submission to you. In fact, $he barely reacts at all. But being an arcology owner has taught you many things, not least of which is patience. With time and a gentle hand, your slave's shoulders slowly start to relax, so slowly if you weren't paying attention you wouldn't have noticed. With a sense of satisfaction, you continue your actions, enjoying the feeling of your <<if $activeSlave.hStyle == "shaven bald" || $activeSlave.bald == 1>>hand gliding over $his smooth head<<else>>fingers combing through $his hair and gently scritching $his scalp<</if>>. You settle with this for now, knowing that any attempt at further intimacy will likely scare your slave off, but you enjoy it nonetheless.
 <<else>>
 	$He reflexively turns away from you, but you tenderly hold $his chin and maneuver $him in position with one hand and slowly but gently move your other hand to the top of $his head. Spluttering, $he leans backwards, but you catch $him by the shoulder and pin $him against you, where you feel the intense heat from $his body against your <<if $PC.boobs == 1>>soft breasts<<else>>manly chest<</if>>, before resuming your gentle stroking. $He desperately tries to wriggle out of your grasp, but $his struggles slowly subside as $he realizes that you're not taking this any farther. Tenderly and lovingly you stroke your fingers over $his head, appreciating the feeling of your slave's rebelliousness.
 <</if>>
@@ -170,7 +170,7 @@ face and lightly touch $his
 <</if>>
 with your fingertips. You move your hand to the side of your slave's head, stroking $his temple gently.
 <<if $activeSlave.fetish == "mindbroken">>
-  This causes an unconscious shiver to travel down $his spine.
+	This causes an unconscious shiver to travel down $his spine.
 <<elseif $activeSlave.devotion > 50>>
 	This causes $him to shudder in delight and to move $his hand to your hip, squeezing it gently.
 <<elseif $activeSlave.devotion > 20>>
@@ -183,7 +183,7 @@ with your fingertips. You move your hand to the side of your slave's head, strok
 	This would cause $him to shiver with delight, but her distaste for the situation makes that impossible.
 <</if>>
 
-You move your hand down to caress $his forehead, and then slide your hand along $his cheek.  The last thing you do is take $his head lightly and trace around it, gently massaging as you go.  Finally you pat $him a few times before letting $him up.
+You move your hand down to caress $his forehead, and then slide your hand along $his cheek. The last thing you do is take $his head lightly and trace around it, gently massaging as you go. Finally you pat $him a few times before letting $him up.
 
 /* outro + reaction */
 
@@ -196,7 +196,7 @@ You move your hand down to caress $his forehead, and then slide your hand along
 	<</if>>
 	awaiting further use of $his body.
 <<elseif ($activeSlave.relationship == -2)>>
-	When you finally stop petting $him, <<if canSee($activeSlave)>>$his eyes remain closed just for a second <</if>>and $his mouth stands open in slack-jawed joy, before $he slowly <<if canSee($activeSlave)>> opens $his eyes<<else>> turns $his gaze towards you<</if>> and smiles warmly at you.  Pleasure lights up $his face<<if ($activeSlave.amp != 1)>> as $his hand traces the path yours took up to $his head and mimics your last movements<<else>> as $his gaze drifts off to the right in memory, tilting $his head from side to side in sympathetic memory of how it felt to have your hand on $his head<</if>>.
+	When you finally stop petting $him, <<if canSee($activeSlave)>>$his eyes remain closed just for a second <</if>>and $his mouth stands open in slack-jawed joy, before $he slowly <<if canSee($activeSlave)>> opens $his eyes<<else>> turns $his gaze towards you<</if>> and smiles warmly at you. Pleasure lights up $his face<<if ($activeSlave.amp != 1)>> as $his hand traces the path yours took up to $his head and mimics your last movements<<else>> as $his gaze drifts off to the right in memory, tilting $his head from side to side in sympathetic memory of how it felt to have your hand on $his head<</if>>.
 	<<if ($activeSlave.accent >= 3)>>
 		$He does $his best to communicate love with $his <<if canSee($activeSlave)>>$activeSlave.eyeColor eyes<<else>>facial expressions<</if>>, since $he does not speak $language well enough to express $himself.
 	<<elseif ($activeSlave.amp == 1) && (!canTalk($activeSlave))>>
diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw
index f75152138d83126c2b2d518ee170c5c1c7c75407..12e2599f8e967047a956277a8ff78c8617c4099d 100644
--- a/src/pregmod/fSlaveFeed.tw
+++ b/src/pregmod/fSlaveFeed.tw
@@ -144,13 +144,13 @@ Next, you see to $activeSlave.slaveName.
 <<elseif ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 	$He is accustomed to submitting to you, but as a natural submissive $he doesn't have much trouble submitting to $milkTap.slaveName's mothering instead.
 	
-<<elseif  $activeSlave.devotion < -20>>
+<<elseif $activeSlave.devotion < -20>>
 	$He tries to refuse, so you strap $his to $milkTap.slaveName's breast, milky $milkTap.nipples nipple wedged in $his mouth.
 	
-<<elseif  $activeSlave.devotion <= 20>>
+<<elseif $activeSlave.devotion <= 20>>
 	$He obeys your orders reluctantly, drawing near $milkTap.slaveName's breasts despite $his obvious hesitation to be filled with milk.
 	
-<<elseif  $activeSlave.devotion <= 50>>
+<<elseif $activeSlave.devotion <= 50>>
 	$He obeys your orders, drawing near $milkTap.slaveName's breasts despite $his slight hesitation at the idea of being filled with milk.
 	
 <<else>>
@@ -257,7 +257,7 @@ Next, you see to $activeSlave.slaveName.
 	<<else>>
 		With a lack of holes to penetrate, you simply wrap your arms around $him and push $him deeper into the protesting $milkTap.slaveName. You bring a hand to $activeSlave.slaveName's middle so you may feel $his stomach swell with milk and lead the other to your <<if $PC.dick == 0>>soaked pussy<<else>>stiff prick<</if>>. <<if $activeSlave.inflation == 3>>You came multiple times as you felt $his belly slowly round with milk, transform into a jiggling mass, and finally grow taut under your molesting fingers<<elseif $activeSlave.inflation == 2>>You came several times as you felt $his belly slowly round with milk, finally transforming into a jiggling mass, under your molesting fingers<<else>>You came as you felt $his belly slowly round with milk under your molesting fingers<</if>>. Only once your weight is removed from the squirming milk balloon is $he allowed to pull $himself off of the @@.mediumorchid;resentful $milkTap.slaveName@@ and catch $his breath.
 	<</if>>
-	$He gives the shaking $milkTap.slaveName an apologetic look before taking a seat.  The poor cow isn't used to this yet and @@.gold;is terrified of your willingness@@ to take what you want from your slaves.
+	$He gives the shaking $milkTap.slaveName an apologetic look before taking a seat. The poor cow isn't used to this yet and @@.gold;is terrified of your willingness@@ to take what you want from your slaves.
 	<<set $milkTap.devotion -= 5, $milkTap.trust -= 5>>
 	<<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>
 		<<set $activeSlave.vagina = 1>>
@@ -520,10 +520,10 @@ Next, you see to $activeSlave.slaveName.
 <<elseif $activeSlave.devotion < -20>>
 	$He tries to refuse, so you tie $him up, force a mouth spreader into $him, and position $him for $milkTap.slaveName to thrust into.
 	
-<<elseif  $activeSlave.devotion <= 20>>
+<<elseif $activeSlave.devotion <= 20>>
 	$He obeys your orders reluctantly, drawing near $milkTap.slaveName's cock despite $his obvious hesitation to amount of cum that will be gushing into $him.
 	
-<<elseif  $activeSlave.devotion <= 50>>
+<<elseif $activeSlave.devotion <= 50>>
 	$He obeys your orders, drawing near $milkTap.slaveName's cock despite $his slight hesitation at the idea of being filled with cum.
 	
 <<else>>
@@ -718,7 +718,7 @@ Next, you see to $activeSlave.slaveName.
 	<<elseif $PC.dick == 1 && $activeSlave.butt > 4>>
 		You know that signal, but $he isn't allowed to get penetrated, so you settle for sticking your dick between $his huge butt cheeks and fucking $him along with $milkTap.slaveName. With every thrust against the moaning slave, both you and $milkTap.slaveName come closer to climax.
 	<<elseif $PC.dick == 1 && $activeSlave.amp == 0>>
-		You know that signal, but $he isn't allowed to get penetrated, so you settle for sticking your dick between $his  <<if $activeSlave.weight > 95>>soft <</if>>thighs and fucking $him along with $milkTap.slaveName. With every thrust against the moaning slave, both you and $milkTap.slaveName come closer to climax.
+		You know that signal, but $he isn't allowed to get penetrated, so you settle for sticking your dick between $his <<if $activeSlave.weight > 95>>soft <</if>>thighs and fucking $him along with $milkTap.slaveName. With every thrust against the moaning slave, both you and $milkTap.slaveName come closer to climax.
 	<<else>>
 		You know that signal, but $he isn't allowed to get fucked, so you reposition $his so you can rub your <<if $PC.dick == 0>>clit<<else>>dick<</if>> against $him while $he deepthroats $milkTap.slaveName. With every thrust against the moaning slave, both you and $milkTap.slaveName come closer to climax.
 	<</if>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 95f0b0bb92c09d1ffb091b002b16f11d2af546e1..23b412939982b851f72aab023ad5227be0219e45 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -20475,7 +20475,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 	<<elseif ($activeSlave.boobs >= 300)>> 
 		massage the soft butter into $his small, girlish chest, noting with satisfaction $his nipples harden with arousal.
 	<<else>>
-	    massage the soft butter into $his flat chest, noting with satisfaction $his nipples harden with arousal.
+		massage the soft butter into $his flat chest, noting with satisfaction $his nipples harden with arousal.
 	<</if>>
 	<br><br>
 	Satisfied with your covering of your slave's back half, you then resolve to work on $his front. Getting down on your hands and knees, you crawl through the narrow triangle of space between the base of your slave's massive belly, the floor, and the doorway. It's a tight squeeze, and you take longer than you need to in order to enjoy the sound of your slave groaning as you rub up against $his sweaty, buttered up belly, but you eventually make it through. Taking generous handfuls of butter, you slick up the front half of your slave's stomach, starting at the flattened nub of $his pressure-obliterated belly button and slowly working your way up to the round oval of baby-packed flesh being constricted by the doorway. 
diff --git a/src/uncategorized/pHostageAcquisition.tw b/src/uncategorized/pHostageAcquisition.tw
index 723e732e825660db0c9f5f659a30a3ba6f65a874..8f3ee0928e587b0f65a2a917b1e6ef098bdc2c9b 100644
--- a/src/uncategorized/pHostageAcquisition.tw
+++ b/src/uncategorized/pHostageAcquisition.tw
@@ -229,7 +229,7 @@ Your hired mercenaries are en route now with your precious cargo.
 	<<else>>
 	<<set $activeSlave.trust = 80>>
 	Your mercenaries radio you upon arrival. "We got a problem sir. She, um, isn't going to fit... We could try bringing her in through the penthouse balcony, but I'd worry about breaking things."
-	Once $activeSlave.slaveName's immense form is safely in the penthouse, you finally get a good look at her.  Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, she begins to let out a low growl. After several steps, she shouts "Stay away from me, you sick fuck! Flat girls are trash! Real men like big fake tits and asses! You're sick! SICK! Don't you-"
+	Once $activeSlave.slaveName's immense form is safely in the penthouse, you finally get a good look at her. Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, she begins to let out a low growl. After several steps, she shouts "Stay away from me, you sick fuck! Flat girls are trash! Real men like big fake tits and asses! You're sick! SICK! Don't you-"
 	The mercenary captain quickly gags her, "My apologies, I did warn you she was a handful." He pats her grotesque breast, "least she won't be going anywhere." He says, before he and his group exit your penthouse, leaving you with the enraged $activeSlave.slaveName. The girl you used to know is barely recognizable under those implants and she certainly doesn't think the same anymore. Odds are high that she'll cause problems for you in the future, assuming you can find a doctor to remove those ridiculous implants from her once flat chest. Or you could leave her as an immobile ornament, though implants are definitely out of style.
 	<</if>>
 <<case "Transformation Fetishism">>
@@ -296,7 +296,7 @@ Your hired mercenaries are en route now with your precious cargo.
 	<<else>>
 	<<set $activeSlave.trust = 80>>
 	Your mercenaries radio you upon arrival. "We got a problem sir. She, um, isn't going to fit... We could try bringing her in through the penthouse balcony, but I'd worry about breaking things."
-	Once $activeSlave.slaveName's immense form is safely in the penthouse, you finally get a good look at her.  Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, she begins to let out a low growl. After several steps, she shouts "Stay away from me, you sick fuck! Flat girls are trash! Real men like big tits and asses! You're sick! SICK! Don't you-"
+	Once $activeSlave.slaveName's immense form is safely in the penthouse, you finally get a good look at her. Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, she begins to let out a low growl. After several steps, she shouts "Stay away from me, you sick fuck! Flat girls are trash! Real men like big tits and asses! You're sick! SICK! Don't you-"
 	The mercenary captain quickly gags her, "My apologies, I did warn you she was a handful." He pats her grotesque breast, "least she won't be going anywhere." He says, before he and his group exit your penthouse, leaving you with the enraged and struggling $activeSlave.slaveName. You sigh at the amount of motion running through her absurd tits, mountainous ass, and obese body. The girl you used to know is barely recognizable under all that flesh and she certainly doesn't think the same anymore. Odds are high that she'll cause problems for you in the future, once her body sheds the weight. Or you could leave her as an immobile ornament, though assets of that size are definitely out of style.
 	<</if>>
 <<case "Asset Expansionism">>
@@ -345,7 +345,7 @@ Your hired mercenaries are en route now with your precious cargo.
 	<<else>>
 	<<set $activeSlave.trust = 80>>
 	Your mercenaries radio you upon arrival. "We got a problem sir. She, um, isn't going to fit... We could try bringing her in through the penthouse balcony, but I'd worry about breaking things."
-	Once $activeSlave.slaveName's immense form is safely in the penthouse, you finally get a good look at her.  Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, she begins to let out a low growl. After several steps, she shouts "Stay away from me, you sick fuck! Fit girls are trash! Real men like big soft bodies! You're sick! SICK! Don't you-"
+	Once $activeSlave.slaveName's immense form is safely in the penthouse, you finally get a good look at her. Upon seeing you, $activeSlave.slaveName's eyes fill with a distinct hatred. As you step forward, she begins to let out a low growl. After several steps, she shouts "Stay away from me, you sick fuck! Fit girls are trash! Real men like big soft bodies! You're sick! SICK! Don't you-"
 	The mercenary captain quickly gags her, "My apologies, I did warn you she was a handful." He pats her grotesque breast, "least she won't be going anywhere." He says, before he and his group exit your penthouse, leaving you with the enraged and struggling $activeSlave.slaveName. You sigh at the amount of motion running through her absurd tits, mountainous ass, and obese body. The girl you used to know is barely recognizable under all that flesh and she certainly doesn't think the same anymore. Odds are high that she'll cause problems for you in the future, once her body sheds the weight. Or you could leave her as an immobile ornament, though assets of that size are definitely out of style.
 	<</if>>
 <<case "Physical Idealism">>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 893df35a621cfccdf73c3d770bf09272af0660f8..6bc1ebfef4a25677e90744140764632f7fcb7ea9 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -11966,9 +11966,9 @@ $He has
 			<<elseif $activeSlave.weight > 30>>
 				$activeSlave.slaveName's robes totally conceal $his chubby belly.
 			<<elseif $activeSlave.bellyPreg >= 100 || $activeSlave.bellyImplant >= 100>>
-				$activeSlave.slaveName's robes totally conceal  $his belly.
+				$activeSlave.slaveName's robes totally conceal $his belly.
 			<<elseif $activeSlave.muscles > 30>>
-				$activeSlave.slaveName's robes totally conceal  $his abdominal muscles.
+				$activeSlave.slaveName's robes totally conceal $his abdominal muscles.
 			<</if>>
 		<<case "a burqa">>
 			<<if $activeSlave.belly >= 1000000>>
diff --git a/src/utility/descriptionWidgetsPiercings.tw b/src/utility/descriptionWidgetsPiercings.tw
index 366a03543cf311f0ddf9f46179ade259f3472fa2..aeb3ff8ac941c554649df9fbed571bc9795491ec 100644
--- a/src/utility/descriptionWidgetsPiercings.tw
+++ b/src/utility/descriptionWidgetsPiercings.tw
@@ -18,7 +18,7 @@
 			<<case "a nice pony outfit" "a slutty pony outfit">>
 				$He's wearing horseshoe shaped earrings.
 			<<case "leather pants and pasties" "leather pants" "leather pants and a tube top" "a tube top">>
-				$He's wearing  large hoop earrings.
+				$He's wearing large hoop earrings.
 			<<case "a gothic lolita dress">>
 				$He's wearing black earrings.
 			<<case "a sports bra" "a one-piece swimsuit" "sport shorts and a t-shirt" "sport shorts and a sports bra" "sport shorts">>