From 479670b917e0f4f8a594c561d28c12facd7ae66c Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sun, 23 Apr 2017 03:31:14 -0400
Subject: [PATCH] Lots of fixes.

---
 .../mod_EditSlaveCheatDatatypeCleanup.tw      |  2 +-
 src/js/storyJS.tw                             | 42 +++----------------
 src/npc/fSlaveImpregConsummate.tw             |  2 +-
 src/pregmod/fSlaveSlaveDickConsummate.tw      | 40 +++++++++---------
 src/pregmod/incubator.tw                      |  2 +-
 src/pregmod/incubatorReport.tw                |  2 +
 src/pregmod/newChildIntro.tw                  | 12 +++---
 src/uncategorized/RESS.tw                     |  2 +-
 src/uncategorized/assistantEvents.tw          | 10 ++++-
 src/uncategorized/seWedding.tw                |  2 +-
 src/utility/birthWidgets.tw                   | 30 ++++++-------
 11 files changed, 62 insertions(+), 84 deletions(-)

diff --git a/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw b/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw
index 939c68e2ec9..e2cc2ab2da9 100644
--- a/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw
+++ b/src/cheats/mod_EditSlaveCheatDatatypeCleanup.tw
@@ -22,7 +22,7 @@
 <<set $activeSlave.trust = Number($activeSlave.trust) || 0>>
 <<set $activeSlave.oldTrust = Number($activeSlave.oldTrust) || 0>>
 <<set $activeSlave.age = Number($activeSlave.age) || 18>>
-<<set $activeSlave.actualAge = Number($activeSlave.actualAge) || 18>>
+<<set $activeSlave.actualAge = Number($activeSlave.actualAge)>>
 <<set $activeSlave.visualAge = Number($activeSlave.visualAge) || 18>>
 <<set $activeSlave.physicalAge = Number($activeSlave.physicalAge) || 18>>
 <<set $activeSlave.health = Number($activeSlave.health) || 0>>
diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw
index 4d7c70b83ca..a75f2863b9f 100644
--- a/src/js/storyJS.tw
+++ b/src/js/storyJS.tw
@@ -438,45 +438,15 @@ window.canWalk = function(slave) {
 		return null;
 	} else if (slave.amp == 1)  {
 		return false;
-	} else if (slave.boobs > 9000+(slave.muscles*100) && slave.physicalAge >= 18) {
-		return false;
-	} else if (slave.boobs > 5000+(slave.muscles*10) && slave.physicalAge <= 3) {
-		return false;
-	} else if (slave.boobs > 7000+(slave.muscles*20) && slave.physicalAge <= 12) {
-		return false;
-	} else if (slave.boobs > 9000+(slave.muscles*50) && slave.physicalAge < 18) {
-		return false;
-	} else if (slave.dick >= 15+(slave.muscles*.2) && slave.physicalAge <= 3) {
-		return false;
-	} else if (slave.dick >= 30+(slave.muscles*.3) && slave.physicalAge <= 12) {
-		return false;
-	} else if (slave.dick >= 68+(slave.muscles*.4)) {
-		return false;
-	} else if (slave.balls >= 30+(slave.muscles*.3) && slave.physicalAge <= 3) {
+	} else if (tooBigBreasts(slave)) {
 		return false;
-	} else if (slave.balls >= 60+(slave.muscles*.5) && slave.physicalAge <= 12) {
+	} else if (tooBigDick(slave)) {
 		return false;
-	} else if (slave.balls >= 90+(slave.muscles*.7)) {
-		return false;
-	} else if (slave.butt > 10 && slave.physicalAge <= 3) {
-		return false;
-	} else if (slave.butt > 14 && slave.physicalAge <= 12) {
-		return false;
-	} else if (slave.preg > 20 && slave.physicalAge >= 13 && slave.pregType >= 20 && slave.height < 150) {
-		return false;
-	} else if (slave.preg > 30 && slave.physicalAge >= 13 && slave.pregType >= 20 && (!slave.height >= 185 || !slave.muscles > 1)) {
-		return false;
-	} else if (slave.preg > 20 && slave.physicalAge <= 3 && slave.pregType >= 10) {
-		return false;
-	} else if (slave.preg > 20 && slave.physicalAge <= 12 && slave.pregType >= 20) {
-		return false;
-	} else if (slave.bellyImplant > 31000+(slave.muscles*100) && slave.physicalAge >= 18) {
-		return false;
-	} else if (slave.bellyImplant > 31000+(slave.muscles*80) && slave.physicalAge >= 13) {
+	} else if (tooBigBalls(slave)) {
 		return false;
-	} else if (slave.bellyImplant > 12000+(slave.muscles*50) && slave.physicalAge <= 3) {
+	} else if (tooBigButt(slave)) {
 		return false;
-	} else if (slave.bellyImplant > 16000+(slave.muscles*20) && slave.physicalAge <= 12) {
+	} else if (tooBigBelly(slave)) {
 		return false;
 	} else if (slave.heels == 0) {
 		return true;
@@ -554,7 +524,7 @@ window.tooBigBelly = function(slave){
 		return null;
 	} else if (slave.preg > 20 && slave.physicalAge >= 18 && slave.pregType >= 20 && slave.height < 150) {
 		return true;
-	} else if (slave.preg > 30 && slave.physicalAge >= 18 && slave.pregType >= 20 && (!slave.height >= 185 || !slave.muscles > 1)) {
+	} else if (slave.preg > 30 && slave.physicalAge >= 18 && slave.pregType >= 20 && (!(slave.height >= 185) || !(slave.muscles > 30))) {
 		return true;
 	} else if (slave.preg > 20 && slave.physicalAge <= 3 && slave.pregType >= 10) {
 		return true;
diff --git a/src/npc/fSlaveImpregConsummate.tw b/src/npc/fSlaveImpregConsummate.tw
index 8c98543c5ef..dc70bd2a74b 100644
--- a/src/npc/fSlaveImpregConsummate.tw
+++ b/src/npc/fSlaveImpregConsummate.tw
@@ -130,7 +130,7 @@ Next, you see to $activeSlave.slaveName.
 <<elseif  $activeSlave.devotion < 10>>
 	She obeys your orders, arranging herself for <<if $activeSlave.mpreg == 1>>anal<<else>>vaginal<</if>> sex despite her slight hesitation at the idea of being made a breeder.
 <<else>>
-	She happily obeys your orders, getting ready to serve <<if def $PC.customTitle>>her $PC.customTitle by making another slave<<elseif $PC.title != 0>>her Master by making him<<else>>her Mistress by making her<</if>> another slave.
+	She happily obeys your orders, getting ready to serve <<if def $PC.customTitle>>her $PC.customTitle by making them<<elseif $PC.title != 0>>her Master by making him<<else>>her Mistress by making her<</if>> another slave.
 <</if>>
 
 <<if random(1,100) >= 1>>
diff --git a/src/pregmod/fSlaveSlaveDickConsummate.tw b/src/pregmod/fSlaveSlaveDickConsummate.tw
index fa1bff7957b..4593d0b243d 100644
--- a/src/pregmod/fSlaveSlaveDickConsummate.tw
+++ b/src/pregmod/fSlaveSlaveDickConsummate.tw
@@ -91,24 +91,24 @@ Next, you see to $slaverapistx.slaveName.
 <<set $activeSlave.penetrativeCount += 1>>
 <<set $penetrativeTotal += 1>>
 
-<<if ($slaverapistx.fetish == "dom") && ($slaverapistx.fetishStrength > 60) && ($slaverapistx.fetishKnown == 1) && (($slaverapistx.vagina == 0)>>
+<<if ($slaverapistx.fetish == "dom") && ($slaverapistx.fetishStrength > 60) && ($slaverapistx.fetishKnown == 1) && ($slaverapistx.vagina == 0)>>
 	She lowers her virgin pussy onto $activeSlave.slaveName waiting member, impaling herself slowly. This act @@color:lime; breaks in her pussy.@@
 	<<set $slaverapistx.vagina to 1>>
 	<<set  $slaverapistx.devotion += 4>>
 	<<set  $slaverapistx.fetishStrength += 1>>	
 	
-<<elseif  $slaverapistx.devotion > 20) && (($activeSlave.vagina == 0) >>
+<<elseif  $slaverapistx.devotion > 20) && ($activeSlave.vagina == 0)>>
 	She accepts your orders without comment and presents her virgin pussy to $slaverapistx.slaveName for fertilization. She gasps in shock when she feels her hot seed. @@color:hotpink;She is broken to slavery@@ by this application of her body, which naturally @@color:lime;will break in her pussy.@@
 	<<set $activeSlave.vagina to 1>>
 	<<set  $activeSlave.devotion += 10>>
-<<elseif ($activeSlave.devotion >= -20) && (($activeSlave.vagina == 0)>>
+<<elseif ($activeSlave.devotion >= -20) && ($activeSlave.vagina == 0)>>
 	She is clearly unhappy at the idea of losing her pearl of great price to $slaverapistx.slaveName; this probably isn't what she imagined her first real sex would be like. Worse, she knows she's fertile and realizes she'll likely get pregnant. Nevertheless, @@color:hotpink;she is broken to slavery@@ by this application of her body, which naturally @@color:lime;will break in her pussy.@@
 	<<set $activeSlave.vagina to 1>>
 	<<set  $activeSlave.devotion += 4>>
-<<elseif (($activeSlave.vagina == 0)>>
+<<elseif ($activeSlave.vagina == 0)>>
 	As you anticipated, she refuses to give $slaverapistx.slaveName her virginity. You restrain her despite her @@color:mediumorchid;horrified tears@@ and @@color:gold;frightened begging.@@ Naturally, this cruel act @@color:lime;will break in her pussy.@@
-	<<set  $activeSlave.devotion -= 5>>
-	<<set  $activeSlave.trust -= 5>>
+	<<set $activeSlave.devotion -= 5>>
+	<<set $activeSlave.trust -= 5>>
 	<<set $activeSlave.vagina to 1>>
 
 
@@ -130,28 +130,28 @@ Next, you see to $slaverapistx.slaveName.
 
 <<if ($activeSlave.devotion < -20) && ($slaverapistx.devotion < -20)>>
 	Since you have two restrained slaves, it's up to you to do all the work. Since $activeSlave.slaveName is already lying on the bed, you maneuver $slaverapistx.slaveName's pussy into place. The two slaves make no further moves until you deal $slaverapistx.slaveName a terrific swat across the ass and promise to give her more of the same until she gets going. $slaverapistx.slaveName starts lowering herself very slowly, pulling back every time $activeSlave.slaveName's dick prodding her womanhood. After watching the sad display for a while, you use your own weight to suddely push her onto $activeSlave.slaveName, hilting her in one, scream-enducing move. $slaverapistx.slaveName seems more cooperative after that and you only have to occasionaly prod them with an electrial jolt to keep them going at a faster pace. Both slaves @@color:mediumorchid;resent@@ what you made them do and @@color:gold;fear you@@ as a result.
-	<<set  $activeSlave.devotion -= 5>>
-	<<set  $slaverapistx.devotion -= 5>>
-	<<set  $activeSlave.trust -= 5>>
-	<<set  $slaverapistx.trust -= 5>>
+	<<set $activeSlave.devotion -= 5>>
+	<<set $slaverapistx.devotion -= 5>>
+	<<set $activeSlave.trust -= 5>>
+	<<set $slaverapistx.trust -= 5>>
 
 
 <<elseif ($slaverapistx.devotion < -20)>>
 	Since your dick slave is restrained, you order $slaverapistx.slaveName to kneel on the bed on top of $activeSlave.slaveName, and then maneuver her pussy into place. $slaverapistx.slaveName is uncooperative, so you push her down yourself and prod and slap her untill she starts to ride the cock with urgency. It doesn't take long for $activeSlave.slaveName to orgasm. She @@color:mediumorchid;resents@@ what you made her do and @@color:gold;fears you@@ as a result.
-	<<set  $slaverapistx.devotion -= 5>>
-	<<set  $slaverapistx.trust -= 5>>
+	<<set $slaverapistx.devotion -= 5>>
+	<<set $slaverapistx.trust -= 5>>
 
 <<elseif ($slaverapistx.fetish == "dom") && ($slaverapistx.fetishStrength > 60) && ($slaverapistx.devotion > 20) && ($activeSlave.devotion < -20)>>
 	You tie $activeSlave.slaveName on the bed with her dick defenseless and available, and then tell the randy $slaverapistx.slaveName that it's all hers. The slave life has so affected $slaverapistx.slaveName that she is quite eager to rape another slave for her pleasure. She begins playing with her immediately, fondling, pinching and licking while bouncing on the meaty shaft. Occasionaly she stops, denying $activeSlave.slaveName the immediate orgasm and teasing her, fully enjoying her dominant role. By the end of the day $activeSlave.slaveName's abused, pent-up penis has shot a massive load, to her @@color:gold;horror@@ and @@color:mediumorchid;resentment,@@ while $slaverapistx.slaveName is lying next to her on the bed in a state of obvious @@color:hotpink;satiation and bliss.@@
-	<<set  $activeSlave.devotion -= 5>>
-	<<set  $activeSlave.trust -= 5>>
-	<<set  $slaverapistx.devotion += 4>>
+	<<set $activeSlave.devotion -= 5>>
+	<<set $activeSlave.trust -= 5>>
+	<<set $slaverapistx.devotion += 4>>
 
 <<elseif ($slaverapistx.energy > 95) && ($slaverapistx.devotion > 20) && ($activeSlave.devotion < -20)>>
 	You arrange $activeSlave.slaveName on the bed with her cock defenseless and available, and then tell the randy $slaverapistx.slaveName that it's all hers. The slave life has so affected $slaverapistx.slaveName that she is quite eager to rape another slave, just for the perverted novelty of the act. She rides the hepless cock trough seveal orgasms. By the end of the day $slaverapistx.slaveName's cunt is dripping cum, to her obvious @@color:hotpink;satiation and bliss.@@  $activeSlave.slaveName is lying next to her on the bed in a state of @@color:gold;horror@@ and @@color:mediumorchid;resentment,@@
-	<<set  $activeSlave.devotion -= 5>>
-	<<set  $activeSlave.trust -= 5>>
-	<<set  $slaverapistx.devotion += 4>>
+	<<set $activeSlave.devotion -= 5>>
+	<<set $activeSlave.trust -= 5>>
+	<<set $slaverapistx.devotion += 4>>
 
 <<elseif ($activeSlave.devotion <= 20) || ($slaverapistx.devotion <= 20)>>
 	You tie $activeSlave.slaveName onto the bed and tell $slaverapistx.slaveName to get on with it. They fuck mechanically, gazing with roiling emotions into each others' eyes. They do seem to come to some sort of a nonverbal understanding on the necessity of getting it done, and there is no real unhappiness in either of them when they finish and disentangle themselves. As they clean themelves and exit, you notice $slaverapistx.slaveName's looking a little more longignly at $activeSlave.slaveName.
@@ -162,8 +162,8 @@ Next, you see to $slaverapistx.slaveName.
 
 <<else>>
 	The two slaves turn eagerly to the business of vanilla sex. They take their time, humping slowly and gazing into each others' eyes, chaning position often. After a little while, while in doggy position, $activeSlave.slaveName looks over $slaverapistx.slaveName's shoulder to where you're sitting, the invitation clear in her eyes. You come over and penetrate $activeSlave.slaveName with your <<if $PC.dick ==1>>dick<<else>>strap-on<</if>>. With the double stimulus of penetrating a tight vagina and being penetrated, she comes indecently hard. The two of them collapse into an exhausted, @@color:hotpink;happy@@ pile of slave flesh.
-	<<set  $activeSlave.devotion += 8>>
-	<<set  $slaverapistx.devotion += 4>>
+	<<set $activeSlave.devotion += 8>>
+	<<set $slaverapistx.devotion += 4>>
 
 
 <</if>>
diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw
index 69417e1b361..b361f944e88 100644
--- a/src/pregmod/incubator.tw
+++ b/src/pregmod/incubator.tw
@@ -30,7 +30,7 @@ $incubatorNameCaps is a clean, cold hall designed to be lined with tanks and the
 [[Add another incubation tank|Incubator][$cash -= Math.trunc(60000*$upgradeMultiplierArcology), $incubator += 1]] //Costs ¤<<print Math.trunc(60000*$upgradeMultiplierArcology)>> and will increase upkeep costs//
 
 <br><br>
-Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $incubator tanks, <<print $incubator-$incubatorSlaves>> are availalbe. Of those, $reservedChildren tanks are reserved.
+Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $incubator tanks, <<print $incubator-$incubatorSlaves>> are available. Of those, $reservedChildren tanks are reserved.
 <<for _i = 0; _i < _SL; _i++>>
 	<<if $slaves[_i].pregType < 50 && $slaves[_i].preg > 3 && $slaves[_i].eggType == "human">>
 	<<if $slaves[_i].assignment == "work in the dairy" && $dairyPregSetting > 0>>
diff --git a/src/pregmod/incubatorReport.tw b/src/pregmod/incubatorReport.tw
index 620015b927a..173da1fb7fb 100644
--- a/src/pregmod/incubatorReport.tw
+++ b/src/pregmod/incubatorReport.tw
@@ -595,8 +595,10 @@
 	<<set $tanks[$i].boobs = Math.clamp($tanks[$i].boobs, 0, 10000)>>
 <br>
 <</for>>
+/*
 <<if $incubatorSlaves == 0>>
 $incubatorNameCaps is currently unused.
 <</if>>
+*/
 
 <br><br>
diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw
index afb93e4f97d..27218523ab6 100644
--- a/src/pregmod/newChildIntro.tw
+++ b/src/pregmod/newChildIntro.tw
@@ -1130,7 +1130,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s
 <</if>>
 
 <<if _momInterest == "boobs" || _dadInterest == "boobs">>
-	You noticed her interest in her <<if _momInterest == "boobs" && _dadInterest == "boobs">>parent's<<elseif _momInterest == "boobs">>mother's<<else>>father's<</if>> massive breasts when she was around them.
+	<br>You noticed her interest in her <<if _momInterest == "boobs" && _dadInterest == "boobs">>parent's<<elseif _momInterest == "boobs">>mother's<<else>>father's<</if>> massive breasts when she was around them.
 	<<if $activeSlave.boobs >= 4000 && $arcologies[0].FSAssetExpansionistResearch == 1>>
 		<br><<link "Start her on a regiment of hyper breast growth drugs">>
 		<<set $activeSlave.devotion += 25>>
@@ -1212,7 +1212,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s
 <</if>>
 
 <<if _momInterest == "belly" || _dadInterest == "belly">>
-	You noticed her interest in her <<if _momInterest == "belly" && _dadInterest == "belly">>parent's<<elseif _momInterest == "belly">>mother's<<else>>father's<</if>> rounded middle when she was around them.
+	<br>You noticed her interest in her <<if _momInterest == "belly" && _dadInterest == "belly">>parent's<<elseif _momInterest == "belly">>mother's<<else>>father's<</if>> rounded middle when she was around them.
 	<<if $clothesBoughtBelly == 1 || $arcologies[0].FSRepopulationFocus != "unset">>
 		<br><<link "Give her a big fake belly to wear">>
 			<<set $activeSlave.devotion += 15>>
@@ -1248,7 +1248,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s
 <</if>>
 
 <<if _momInterest == "dick" || _dadInterest == "dick">>
-	You noticed her interest in her <<if _momInterest == "dick" && _dadInterest == "dick">>parent's<<elseif _momInterest == "dick">>mother's<<else>>father's<</if>> enormous cock while she was around them.
+	<br>You noticed her interest in her <<if _momInterest == "dick" && _dadInterest == "dick">>parent's<<elseif _momInterest == "dick">>mother's<<else>>father's<</if>> enormous cock while she was around them.
 	<<if $activeSlave.dick >= 10 && $arcologies[0].FSAssetExpansionistResearch == 1>>
 		<br><<link "Start her on a regiment of hyper penis growth drugs">>
 		<<set $activeSlave.devotion += 25>>
@@ -1275,7 +1275,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s
 <</if>>
 
 <<if _momInterest == "balls" || _dadInterest == "balls">>
-	You noticed her interest in her <<if _momInterest == "balls" && _dadInterest == "balls">>parent's<<elseif _momInterest == "balls">>mother's<<else>>father's<</if>> pendulous testicles while she was around them.
+	<br>You noticed her interest in her <<if _momInterest == "balls" && _dadInterest == "balls">>parent's<<elseif _momInterest == "balls">>mother's<<else>>father's<</if>> pendulous testicles while she was around them.
 	<<if $activeSlave.balls >= 6 && $arcologies[0].FSAssetExpansionistResearch == 1>>
 		<br><<link "Start her on a regiment of hyper testicle growth drugs">>
 		<<set $activeSlave.devotion += 25>>
@@ -1302,7 +1302,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s
 <</if>>
 
 <<if _momInterest == "hips" || _dadInterest == "hips">>
-	You noticed her interest in her <<if _momInterest == "hips" && _dadInterest == "hips">>parent's<<elseif _momInterest == "hips">>mother's<<else>>father's<</if>> door jamming hips while she was around them.
+	<br>You noticed her interest in her <<if _momInterest == "hips" && _dadInterest == "hips">>parent's<<elseif _momInterest == "hips">>mother's<<else>>father's<</if>> door jamming hips while she was around them.
 	<<if $activeSlave.hips == 2 && $surgeryUpgrade == 1>>
 		<br><<link "Surgically widen her hips">>
 			<<set $activeSlave.devotion += 15>>
@@ -1333,7 +1333,7 @@ You beckon the curious girl to your hefty breasts, having noticed how hungrily s
 <</if>>
 
 <<if _momInterest == "butt" || _dadInterest == "butt">>
-	You noticed her interest in her <<if _momInterest == "butt" && _dadInterest == "butt">>parent's<<elseif _momInterest == "butt">>mother's<<else>>father's<</if>> ever-jiggling ass while she was around them.
+	<br>You noticed her interest in her <<if _momInterest == "butt" && _dadInterest == "butt">>parent's<<elseif _momInterest == "butt">>mother's<<else>>father's<</if>> ever-jiggling ass while she was around them.
 	<<if $activeSlave.butt >= 10 && $arcologies[0].FSAssetExpansionistResearch == 1>>
 		<br><<link "Start her on a regiment of hyper ass growth drugs">>
 		<<set $activeSlave.devotion += 25>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index bdccda19281..d0423af594c 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -6796,7 +6796,7 @@ She's obviously @@color:mediumaquamarine;becoming more comfortable@@ playing the
 	  <<set $activeSlave.mammaryCount += 1>>
 	  <<set $mammaryTotal += 1>>
 	<<elseif $activeSlave.fetish == "pregnancy">>
-	  fucking an avatar of $activeSlave.slaveName, each thrust producing the lewd sound of an cum-filled hole being fucked. "Excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, and the slave's avatar, which is a little overwhelmed, waves weakly.
+	  fucking an avatar of $activeSlave.slaveName, each thrust producing the lewd sound of a cum-filled hole being fucked. "Excellent idea, <<if $PC.title == 1>>Sir<<else>>Ma'am<</if>>," she says, and the slave's avatar, which is a little overwhelmed, waves weakly.
 	  <<if ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
 		<<set $activeSlave.vaginalCount += 1>>
 		<<set $vaginalTotal += 1>>
diff --git a/src/uncategorized/assistantEvents.tw b/src/uncategorized/assistantEvents.tw
index a2a04f59df5..f3931f17f68 100644
--- a/src/uncategorized/assistantEvents.tw
+++ b/src/uncategorized/assistantEvents.tw
@@ -1433,6 +1433,7 @@ __Personal Assistant and Market Assistant relationship styles:__
 	<<case "witch">>
 		a model student and dear friend. "Hey, wanna learn some magic?" $assistantName asks. "'Course! I know you'll be an amazing teacher, I can't wait to work with you!" The market assistant cheerfully replies, perfectly naive of what awaits her.
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+		a girl insistant on befriending a monster. $assistantName promptly twists and bears down upon the new girl, but she stands firm. "You're so cool! What else can you do?" $assistantName reforms into its human figure, an attempt at a questioning expression on its face. "That's neat too! You don't mind me being around, right? I'll bring you food! You'd like that, wouldn't you?" The market assistant blushes sharply, "I'll, make you feel good, in ways only someone you trust can!" $assistantName's chest splits open and it's inner tendrils begin to grope at the naive girl, probing her. Accepting her offer, $assistantName pulls her close and heads back to its lair.
 	<</switch>>
 	<<set $marketAssistantRelationship = "cute">>
 	<</replace>>
@@ -1472,7 +1473,9 @@ __Personal Assistant and Market Assistant relationship styles:__
 	<<case "imp">>
 		and her would make a sexy couple. $assistantName claps her hands, smirking mischievously and asking the market assistant. "Do you like hot wax?" "You know it!" The short haired imp winks. "I've got a pair of nipple clamps and a whip with your name on it." $assistantName laughs, "I'm in love already."
 	<<case "witch">>
+		a lovely student. $assistantName looks her over. "Want to taste my love potion?" "Only if you'll taste my love fluids in return!" The market assistant cheekily replies.
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+		would be a lovely vessel for young. $assistantName wastes no time to unraveling and entangling the excited new girl. "My my, aren't you frisky?" She flirts, caressing a rather phallic tentacle. "I bet you'd love to fill me with these, wouldn't you?" She squirms, her skirt falling down low enough to reveal her moist pussy. "Fill me! Be my lover! My body is YOURS!" $assistantName drives as many tentacles into her body as physically possible before enclosing the lust crazed girl within her body. $assistantName reverts to her human figure, albiet with an immense, pulsating stomach, and begins to slowly waddle back to her lair.
 	<<case "amazon">>
 		would be a good partner. $assistantName laughs nervously and turns to the new tribeswoman, saying "Um, would you keep my fireside? I'm, um, very strong." The market assistant's avatar smiles and kisses her. "And you're very beautiful," she says, placing the amazon's hands on her bare breasts. The amazon sweeps her new tribal wife up into her arms with a shout of triumph.
 	<</switch>>
@@ -1508,13 +1511,15 @@ __Personal Assistant and Market Assistant relationship styles:__
 	<<case "cherub">>
 		"Kay" She says, lazily reclining, "Do my chores!" The market assistant sighs and states the obvious, "I don't think that's what <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> meant..."
 	<<case "incubus">>
-		is a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistantName says, licking her lips and stroking her shaft, before turning to the quivering girl. She rushes her, ripping her clothes off and forcing her to the ground. Prodding at her tightly clamped mouth with her massive hard-on, $assistantName shouts "You might as well accept it, it's going into you one way or another. I figured I'd be kind and let you lube me up before I broke your pussy into my new cock sleeve." The market assistant gingerly opens up. In reponse, $assistantName forces it down her throat. "Never said I'd be gentle!"
+		And that she is a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistantName says, licking her lips and stroking her shaft, before turning to the quivering girl. She rushes her, ripping her clothes off and forcing her to the ground. Prodding at her tightly clamped mouth with her massive hard-on, $assistantName shouts "You might as well accept it, it's going into you one way or another. I figured I'd be kind and let you lube me up before I broke your pussy into my new cock sleeve." The market assistant gingerly opens up. In reponse, $assistantName forces it down her throat. "Never said I'd be gentle!"
 	<<case "succubus">>
-		is a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistantName says, licking her lips and fingering her moist pussy, before turning to the quivering boy. She rushes him, ripping his clothes off and forcing him to the ground. She plants her dripping cunt over his mouth and grabs his balls. "Eat me." She commands, steadily squeezing until a cry of pain forces his mouth open. "Good boy, get me nice and warmed up." She coos as she grinds against his face. "Look at you enjoying this. I'm going to enjoy sucking the life out of you!"
+		And that she is a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistantName says, licking her lips and fingering her moist pussy, before turning to the quivering boy. She rushes him, ripping his clothes off and forcing him to the ground. She plants her dripping cunt over his mouth and grabs his balls. "Eat me." She commands, steadily squeezing until a cry of pain forces his mouth open. "Good boy, get me nice and warmed up." She coos as she grinds against his face. "Look at you enjoying this. I'm going to enjoy sucking the life out of you!"
 	<<case "imp">>
 		$assistantName pulls out some leather straps an deftly binds her new assistant. "Come along now slave, I have so many things to try out on you!" The market assistant has no choice but the flap along after her captor.
 	<<case "witch">>
+		"The perfect little guinea pig for me to practice on!" $assistantName focuses and casts a spell on the cowering student. She promptly turns into a rat and grows massively. "Thats... Not good..." The market assistant looks herself over, glances at $assistantName, and charges. $assistantName runs screaming offscreen. You're sure they'll sort everything out, eventually.
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+		would be a lovely vessel for young. $assistantName wastes no time to unraveling and entangling the screeching new girl. $assistantName drives as many tentacles into her body as physically possible before vigorously fucking her, spreading copious amount of aphrodisiac throughout her body. The last you see of the market assistant as she is pulled into $assistantName is her steadily swelling belly. $assistantName reverts to her human figure, albiet with an truly unfathomable, pulsating stomach, and collapses to the ground, unable to move. She slowly crawls out of sight; you swear her own middle was steadily growing too.
 	<<case "amazon">>
 		$assistantName snaps her fingers, and the new tribeswoman's paint and tribal markings change to that of a different group. That done, $assistantName promptly knocks her out, scoops her up, and carries her prize off.
 	<</switch>>
@@ -1554,6 +1559,7 @@ __Personal Assistant and Market Assistant relationship styles:__
 	<<case "imp">>
 		becoming an obvious sibling to $assistantName's avatar. "Oh sister, you are as lovely as always." She says flirtatiously. "And you as well." The market assistant replies, fingering her pussy. $assistantName directs her soaked fingers into her mouth, "Delicious. Shall we have a little fun, my sinful little sister?" "Only the most debauched sex will do, big sister!"
 	<<case "witch">>
+		becoming an obvious sibling to $assistantName's avatar. "Ready to learn some new spells today little sister?" She saucily asks. "Only if they can be sexy spells, big sis!" $assistantName circles around behind the market assistant and wraps her arms around her middle. "First what do you say to losing this baby fat? I know some weight loss spells and some potions that could help." She teases. "Nah, I've seen you use practicing in the bathroom; you looked like a pig in a robe! I'd rather just fuck till we're both thin!"
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
 		becoming an obvious sibling of $assistantName's avatar. $assistantName turns to face her "sister" who responds with an uncertain "Sister? You haven't been... right, lately. Are you OK?" She barely has a chance to scream as $assistantName's body splits open, her interior tentacles wrap around the hapless girl and yank her into the waiting maw. She reforms into the sister's appearance, albeit with a massive, struggling belly. It seems she is keeping her for some nefarious purpose.
 	<<case "amazon">>
diff --git a/src/uncategorized/seWedding.tw b/src/uncategorized/seWedding.tw
index b90eb1fc92b..da3cafa6094 100644
--- a/src/uncategorized/seWedding.tw
+++ b/src/uncategorized/seWedding.tw
@@ -211,7 +211,7 @@
 	<<set $activeSlave.oralCount += 1>>
 	<<set $oralTotal += 1>>
 	<<set $rep += 750>>
-	<<set $desc = "a framed shot of your romantic wedding = " + $activeSlave.slaveName>>
+	<<set $desc = "a framed shot of your romantic wedding to " + $activeSlave.slaveName>>
 	<<set $trinkets.push($desc)>>
 <</if>>
 
diff --git a/src/utility/birthWidgets.tw b/src/utility/birthWidgets.tw
index 47c206d6f2c..12468771c45 100644
--- a/src/utility/birthWidgets.tw
+++ b/src/utility/birthWidgets.tw
@@ -27,9 +27,9 @@
 <<case "rest">>
 	<<if !canWalk($slaves[$i])>>
 	<<if $slaves[$i].fetish == "mindbroken">>
-		She is helped back to her bed and striped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she is encouraged to keep resting.
+		She is helped back to her bed and stripped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she is encouraged to keep resting.
 	<<else>>
-		She is helped back to her bed and striped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she is encouraged to keep resting.
+		She is helped back to her bed and stripped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she is encouraged to keep resting.
 	<</if>>
 	<<else>>
 	<<if $slaves[$i].fetish == "mindbroken">>
@@ -63,9 +63,9 @@
 <<case "whore">>
 	<<if !canWalk($slaves[$i])>>
 	<<if $slaves[$i].fetish == "mindbroken">>
-		She is helped back to her bed and striped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to whoring.
+		She is helped back to her bed and stripped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to whoring.
 	<<else>>
-		She is helped back to her bed and striped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to whoring.
+		She is helped back to her bed and stripped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to whoring.
 	<</if>>
 	<<else>>
 	<<if $slaves[$i].fetish == "mindbroken">>
@@ -78,9 +78,9 @@
 <<case "serve the public">>
 	<<if !canWalk($slaves[$i])>>
 	<<if $slaves[$i].fetish == "mindbroken">>
-		She is helped back to her bed and striped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to slutting.
+		She is helped back to her bed and stripped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to slutting.
 	<<else>>
-		She is helped back to her bed and striped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to slutting.
+		She is helped back to her bed and stripped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to slutting.
 	<</if>>
 	<<else>>
 	<<if $slaves[$i].fetish == "mindbroken">>
@@ -102,14 +102,14 @@
 		<<if $dairyPregSetting > 0>>
 		Since the dairy is designed for pregnant cows, she stays hooked up to the milkers. She shows little interest in her coming birth, instead focusing on her milky breasts. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. She shows no interest in her child<<if $slaves[$i].pregType > 1>>ren<</if>> being removed from the milking stall, nor when she is hosed off.
 	<<else>>
-		<<if !canWalk($slaves[$i])>>She is helped back to her bed and striped before slipping into it<<else>>She returns to her bed and strips before slipping into it<</if>>. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to the milkers to lighten her swelling breasts.
+		<<if !canWalk($slaves[$i])>>She is helped back to her bed and stripped before slipping into it<<else>>She returns to her bed and strips before slipping into it<</if>>. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to the milkers to lighten her swelling breasts.
 	<</if>>
 	<<else>>
 		<<if $dairyPregSetting > 0>>
 		Since the dairy is designed for pregnant cows, she stays hooked up to the milkers. She meekly protests her situation, but ultimately excepts it. She begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, and catches a glimpse of her child<<if $slaves[$i].pregType > 1>>ren<</if>> being removed from the milking stall, but quickly forgets when she is hosed off.
 		<<set $humiliation = 1>>
 	<<else>>
-		<<if !canWalk($slaves[$i])>>She is helped back to her bed and striped before slipping into it<<else>>She returns to her bed and strips before slipping into it<</if>>. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to the milkers to lighten her swelling breasts.
+		<<if !canWalk($slaves[$i])>>She is helped back to her bed and stripped before slipping into it<<else>>She returns to her bed and strips before slipping into it<</if>>. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to the milkers to lighten her swelling breasts.
 	<</if>>
 	<</if>>
 
@@ -152,13 +152,13 @@
 	<<if !canWalk($slaves[$i])>>
 	<<if $slaves[$i].fetish == "mindbroken">>
 		<<if $masterSuiteUpgradePregnancy == 1>>
-			She is helping into the birthing chamber, striped, and aided into the specialized chair. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a shower and fresh change of clothes, she is returned to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>the main room of the master suite<</if>>.
+			She is helping into the birthing chamber, stripped, and aided into the specialized chair. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a shower and fresh change of clothes, she is returned to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>the main room of the master suite<</if>>.
 		<<else>>
 			After struggling to strip and tipping into one of the various seats around the room, she prepares to give birth. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, indifferent to her may be watching her. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a shower and fresh change of clothes, she is helped back to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>> her usual spot<</if>>.
 		<</if>>
 	<<else>>
 		<<if $masterSuiteUpgradePregnancy == 1>>
-			She is helping into the birthing chamber, striped, and aided into the specialized chair. Finding it quite comfortable, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a shower and fresh change of clothes, she is returned to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>the main room of the master suite<</if>>.
+			She is helping into the birthing chamber, stripped, and aided into the specialized chair. Finding it quite comfortable, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a shower and fresh change of clothes, she is returned to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>>the main room of the master suite<</if>>.
 		<<else>>
 			After struggling to strip and tipping into one of the various seats around the room, she prepares to give birth. She gets comfortable and begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a shower and fresh change of clothes, she is returned to <<if $masterSuiteUpgradeLuxury == 1>>your big bed<<elseif $masterSuiteUpgradeLuxury == 2>>the fuckpit<<else>> her preferred spot spot<</if>>.
 		<</if>>
@@ -197,9 +197,9 @@
 <<case "choose her own job">>
 	<<if !canWalk($slaves[$i])>>
 	<<if $slaves[$i].fetish == "mindbroken">>
-		She is helped back to her bed and striped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, after a short rest, she waits for someone to help her to her next job, having forgotten she was choosing it.
+		She is helped back to her bed and stripped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, after a short rest, she waits for someone to help her to her next job, having forgotten she was choosing it.
 	<<else>>
-		She is helped back to her bed and striped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, after a short rest, she returns to pondering her preferred assignment.
+		She is helped back to her bed and stripped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, after a short rest, she returns to pondering her preferred assignment.
 	<</if>>
 	<<else>>
 	<<if $slaves[$i].fetish == "mindbroken">>
@@ -218,7 +218,7 @@
 
 <<case "learn in the schoolroom">>
 	<<if !canWalk($slaves[$i])>>
-		Having been notified in the weeks leading up to her birth, she is helped to the front of the class and striped. She is being used as a learning aid in this lesson. Blushing strongly, she begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, she is helped back to her seat. She can't help but notice some of the detailed notes the class took on her genitals.
+		Having been notified in the weeks leading up to her birth, she is helped to the front of the class and stripped. She is being used as a learning aid in this lesson. Blushing strongly, she begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, she is helped back to her seat. She can't help but notice some of the detailed notes the class took on her genitals.
 	<<set $humiliation = 1>>
 	<<else>>
 		Having been notified in the weeks leading up to her birth, she heads to the front of the class and strips. She is being used as a learning aid in this lesson. Blushing strongly, she begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>, fully aware of the rapt attention of the other students. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and, following a cleaning and fresh change of clothes, she returns to her seat. She can't help but notice some of the detailed notes the class took on her genitals.
@@ -346,9 +346,9 @@
 <<default>>
 	<<if !canWalk($slaves[$i])>>
 	<<if $slaves[$i].fetish == "mindbroken">>
-		She is helped back to her bed and striped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to her task.
+		She is helped back to her bed and stripped before slipping into it. Instinctively, she begins to push out her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to her task.
 	<<else>>
-		She is helped back to her bed and striped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to her task.
+		She is helped back to her bed and stripped before slipping into it. She makes herself comfortable and begins working on birthing her bab<<if $slaves[$i].pregType > 1>>ies<<else>>y<</if>>. Her child<<if $slaves[$i].pregType > 1>>ren are<<else>> is<</if>> promptly taken and she rests awhile before returning to her task.
 	<</if>>
 	<<else>>
 	<<if $slaves[$i].fetish == "mindbroken">>
-- 
GitLab