diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw
index 73c6655860e681586a062922c838a3b98f650a24..d4756581669a48189c2b010ea2e6e3bcdeefb43f 100644
--- a/src/events/intro/introSummary.tw
+++ b/src/events/intro/introSummary.tw
@@ -3,6 +3,7 @@
 <<set $neighboringArcologies to Math.clamp($neighboringArcologies, 0, 8)>>
 <<set $FSCreditCount to Math.clamp($FSCreditCount, 4, 7)>>
 <<set $PC.actualAge to Math.clamp($PC.actualAge, 18, 80)>>
+<<set $PC.birthWeek to Math.clamp($PC.birthWeek, 0, 51)>>
 
 <<silently>>
 FertilityAge($fertilityAge)
@@ -517,6 +518,11 @@ Age:
 <<textbox "$PC.actualAge" $PC.actualAge "Intro Summary">>
 <<set $PC.physicalAge = $PC.actualAge, $PC.visualAge = $PC.actualAge>>
 
+<br>
+
+Birthweek:
+<<textbox "$PC.birthWeek" $PC.birthWeek "Intro Summary">>
+
 <br>
 <<if $playerAging == 2>>
 	You will ''age naturally.''
diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index 06010e3dd319e229b1065ef495d1fa303a8283c4..da77503a6deb3149f73c9bb7432612a845316d27 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -230,6 +230,30 @@
 	<</for>>
 	<<set $slavesOriginal = $slaves>>
 	<<set $organs = []>>
+	<<if ndef $PC.intelligence>>
+		<<set $PC.intelligence = 3>>
+	<</if>>
+	<<if ndef $PC.face>>
+		<<set $PC.face = 3>>
+	<</if>>
+	<<if ndef $PC.actualAge>>
+		<<if $PC.age == 1>>
+			<<set $PC.actualAge = 20>>
+		<<elseif $PC.age == 2>>
+			<<set $PC.actualAge = 35>>
+		<<elseif $PC.age == 3>>
+			<<set $PC.actualAge = 50>>
+		<</if>>
+	<</if>>
+	<<if ndef $PC.visualAge>>
+		<<set $PC.visualAge = $PC.actualAge>>
+	<</if>>
+	<<if ndef $PC.physicalAge>>
+		<<set $PC.physicalAge = $PC.actualAge>>
+	<</if>>
+	<<if ndef $PC.birthWeek>>
+		<<set $PC.birthWeek = 0>>
+	<</if>>
 <<else>>
 	<<set $slaves = []>>
 	<<set $slavesOriginal = []>>
@@ -319,7 +343,7 @@
 
 <<set $cheater to 0>>
 <<set $PCName to "Anonymous">>
-<<set $PC to {title: 1, ID: -1, dick: 1, vagina: 0, preg: 0, pregSource: 0, pregMood: 0, labor: 0, births: 0, boobsBonus: 0, degeneracy: 0, voiceImplant: 0, accent: 0, shoulders: 0, shouldersImplant: 0, boobs: 0, career: "capitalist", rumor: "wealth", indenture: -1, indentureRestrictions: 0, birthWeek: random(0,51), age: 2, sexualEnergy: 4, refreshment: "cigar", refreshmentType: 0, race: "white", skin: "white", eyeColor: "blue", hColor: "blonde", nationality: "Stateless", father: 0, mother: 0, sisters: 0, daughters: 0, birthElite: 0, birthMaster: 0, birthDegenerate: 0, birthClient: 0, birthOther: 0, birthArcOwner: 0, intelligence: 3, face: 3, actualAge: 35, physicalAge: 35, visualAge: 35, birthweek: 0}>>
+<<set $PC to {title: 1, ID: -1, dick: 1, vagina: 0, preg: 0, pregSource: 0, pregMood: 0, labor: 0, births: 0, boobsBonus: 0, degeneracy: 0, voiceImplant: 0, accent: 0, shoulders: 0, shouldersImplant: 0, boobs: 0, career: "capitalist", rumor: "wealth", indenture: -1, indentureRestrictions: 0, birthWeek: random(0,51), age: 2, sexualEnergy: 4, refreshment: "cigar", refreshmentType: 0, race: "white", skin: "white", eyeColor: "blue", hColor: "blonde", nationality: "Stateless", father: 0, mother: 0, sisters: 0, daughters: 0, birthElite: 0, birthMaster: 0, birthDegenerate: 0, birthClient: 0, birthOther: 0, birthArcOwner: 0, intelligence: 3, face: 3, actualAge: 35, physicalAge: 35, visualAge: 35, birthWeek: 0}>>
 <<set $cash = 10000>>
 <<set $normalizedEvents to 0>>
 <<set $autosave to 1>>
diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw
index d09ceb0b29667ddf1ec3345ea92a8c1e1ff0b2cf..5869b9ab4b6d1be31dfaabc802df449193b92b5b 100644
--- a/src/npc/startingGirls/startingGirls.tw
+++ b/src/npc/startingGirls/startingGirls.tw
@@ -104,8 +104,8 @@ __You are customizing this slave:__
 <</if>>
 <<set $activeSlave.actualAge = Math.clamp($activeSlave.actualAge, $minimumSlaveAge, $retirementAge-1)>>
 <<set $activeSlave.actualAge to Number($activeSlave.actualAge)>>
-<<set $activeSlave.birthweek = Math.clamp($activeSlave.birthweek, 0, 51)>>
-<<set $activeSlave.birthweek to Number($activeSlave.birthweek)>>
+<<set $activeSlave.birthWeek = Math.clamp($activeSlave.birthWeek, 0, 51)>>
+<<set $activeSlave.birthWeek to Number($activeSlave.birthWeek)>>
 <<set $activeSlave.trust = Math.clamp($activeSlave.trust, -100, 100)>>
 <<set $activeSlave.trust = Number($activeSlave.trust)>>
 <<set $activeSlave.devotion = Math.clamp($activeSlave.devotion, -100, 100)>>
diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw
index 9deb675768d48f53923433c2ea4ae3dea5de89a4..de31a9865fe95f5af386905a976cf7569dca55fa 100644
--- a/src/pregmod/managePersonalAffairs.tw
+++ b/src/pregmod/managePersonalAffairs.tw
@@ -5,6 +5,16 @@
 
 You pause for a moment from your busy day to day life to return to <<if $masterSuite != 0>>$masterSuiteName<<else>>your room<</if>> to consider some things about yourself.
 <br>You take yourself in in a full length mirror. You are a <<print $PC.skin>> $PC.race <<if $PC.dick == 1 && $PC.vagina == 1>>futanari<<elseif $PC.dick == 1>>man<<else>>woman<</if>> with $PC.hColor hair and $PC.eyeColor eyes.
+<<if $PC.actualAge >= 65>>
+	You're $PC.actualAge and definitly feeling it.<<if $PC.visualAge > $PC.actualAge>> You've taken measures to look an older $PC.visualAge, though perhaps it might be time to undo it.<<elseif $PC.visualAge < $PC.actualAge>> You've taken measures to look a younger $PC.visualAge, now if only your body agreed with your looks.<</if>>
+<<elseif $PC.actualAge >= 50>>
+	You're $PC.actualAge and starting to feel it.<<if $PC.visualAge > $PC.actualAge>> You've taken measures to look an older $PC.visualAge.<<elseif $PC.visualAge < $PC.actualAge>> You've taken measures to look a younger $PC.visualAge.<</if>>
+<<elseif $PC.actualAge >= 35>>
+	You're $PC.actualAge and strong.<<if $PC.visualAge > $PC.actualAge>> You've taken measures to look an older $PC.visualAge and reap the respect that comes with it.<<elseif $PC.visualAge < $PC.actualAge>> You've taken measures to look a younger $PC.visualAge recapturing your youth.<</if>>
+<<else>>
+	You're $PC.actualAge and full of vigor.<<if $PC.visualAge > $PC.actualAge>> You've taken measures to look an older $PC.visualAge and reap the respect that comes with it.<<elseif $PC.visualAge < $PC.actualAge>> You've taken measures to look a younger $PC.visualAge, even though society may find your looks uncomfortable.<</if>>
+<</if>>
+<<if ($playerAging != 0)>>Your birthday is <<if $PC.birthWeek is 51>>next week<<else>>in <<print 52-$PC.birthWeek>> weeks<</if>>.<</if>>
 <<if $PC.boobsBonus > 0 || $PC.preg > 2>>
 	<<if $PC.boobsBonus > 0>>
 		<<if $PC.boobsBonus > 2>>
@@ -148,14 +158,16 @@ In total, you have given birth to:
 <br>
 <br>
 
-I'm currently
+I'm
 <<if $PC.preg > 0>>
-	<<print $PC.preg>> week<<if $PC.preg > 1>>s<</if>> pregnant, so contraception doesn't matter right now.
+	currently <<print $PC.preg>> week<<if $PC.preg > 1>>s<</if>> pregnant, so contraception doesn't matter right now.
+<<elseif $PC.preg == -2>>
+	menopausal. My time to bear children has passed.
 <<elseif $PC.preg == -1>>
-	on birth control.
+	currently on birth control.
 	[[Stop taking it|Manage Personal Affairs][$PC.preg = 0]]
 <<elseif $PC.preg == 0>>
-	fertile.
+	currently fertile.
 	[[Start taking birth control|Manage Personal Affairs][$PC.preg = -1]]
 <</if>>
 
diff --git a/src/pregmod/pregmodWidgets.tw b/src/pregmod/pregmodWidgets.tw
index 47d26241ce421b1135dd9ff86e1b62549ba1d0fd..f868763d4e7512778da27d956c7f6e387f908bd5 100644
--- a/src/pregmod/pregmodWidgets.tw
+++ b/src/pregmod/pregmodWidgets.tw
@@ -115,30 +115,6 @@
 <<if ndef $args[0].choosesOwnChastity>>
 	<<set $args[0].choosesOwnChastity = 0>>
 <</if>>
-<<if ndef $PC.intelligence>>
-	<<set $PC.intelligence = 3>>
-<</if>>
-<<if ndef $PC.face>>
-	<<set $PC.face = 3>>
-<</if>>
-<<if ndef $PC.actualAge>>
-	<<if $PC.age == 1>>
-		<<set $PC.actualAge = 20>>
-	<<elseif $PC.age == 2>>
-		<<set $PC.actualAge = 35>>
-	<<elseif $PC.age == 3>>
-		<<set $PC.actualAge = 50>>
-	<</if>>
-<</if>>
-<<if ndef $PC.visualAge>>
-	<<set $PC.visualAge = $PC.actualAge>>
-<</if>>
-<<if ndef $PC.physicalAge>>
-	<<set $PC.physicalAge = $PC.actualAge>>
-<</if>>
-<<if ndef $PC.birthweek>>
-	<<set $PC.birthweek = 0>>
-<</if>>
 
 <<if ndef $args[0].pubertyXX>>
 	<<if $args[0].physicalAge >= $args[0].pubertyAgeXX>>
diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw
index 992e3e878cb509e931ab831707a93d44c33bf435..0a7d6337868fb137923df084f9a9e0c407b3870d 100644
--- a/src/pregmod/sePlayerBirth.tw
+++ b/src/pregmod/sePlayerBirth.tw
@@ -138,6 +138,11 @@ Your little <<if $babyGender == 1>>girl<<else>>boy<</if>>
 	looks nothing like you; it's hard to believe <<if $babyGender == 1>>she's your daughter<<else>>he's you son<</if>>
 <</if>>
 
+<<if $PC.physicalAge >= 55 && $playerAging != 0>>
+	You are getting too old to have children; you feel like this may be your last.
+	<<set $PC.preg = -2>>
+<</if>>
+
 <<if $PC.pregSource > 0>>
 	<<for $i to 0; $i < $slaves.length; $i++>>
 		<<if $slaves[$i].ID == $PC.pregSource>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index f178817ad601e22f2badd5faa4ade6a7bad2fd0d..e52d2d967e9e6097fb9d5b3e2949118bdd43291b 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -705,7 +705,7 @@ At your <<if canSee($activeSlave)>>nod<<else>>acknowledgement<</if>>, she
 <<elseif ($activeSlave.fetish is "boobs") && ($activeSlave.fetishKnown == 1)>>
   wiggles her shoulders to give her boobs some motion.
   <<if SlaveStatsChecker.checkForLisp($activeSlave)>>
-	"<<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>, may I have thome nipple pierthings? It would be like having thmeone playing with my nippleth, but, like, all the time. Pleathe?"
+	"<<if def $PC.customTitleLisp>>$PC.customTitleLisp<<elseif $PC.title != 0>>Mathter<<else>>Mithtreth<</if>>, may I have thome nipple pierthings? It would be like having thomeone playing with my nippleth, but, like, all the time. Pleathe?"
   <<else>>
 	"<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, may I have some nipple piercings? It would be like having someone playing with my nipples, but, like, all the time. Please?"
   <</if>>
@@ -4240,7 +4240,7 @@ You tell her kindly that you understand, and that she'll be trained to address t
 		<<set $activeSlave.mammaryCount += 1>>
 		<<set $mammaryTotal += 1>>
 	  <<elseif $activeSlave.preg > 10>>
-		tell her to join you on the couch. <<if $PC.dick == 1>>You orgasm inside her promptly, and then tell her you'll be leaving your seed inside her to do its work while you have her again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into her. You tell her you'll be leaving it inside her to do its work while you have her again.<</if>> She gasps at the appeal of the idea and grinds herself against you hungrily. <<if ($activeSlave.vaginalAccessory is "chastity belt")>> It's her butt you're fucking, but that doesn't disrupt her fantasy.<<set $activeSlave.analCount += 1>><<set $analTotal += 1>><<else>>She's already pregnant, but that doesn't disrupt her fantasy of being even more pregnant.<<set $activeSlave.vaginaCount += 1>><<set $vaginaTotal += 1>><</if>>
+		tell her to join you on the couch. <<if $PC.dick == 1>>You orgasm inside her promptly, and then tell her you'll be leaving your seed inside her to do its work while you have her again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into her. You tell her you'll be leaving it inside her to do its work while you have her again.<</if>> She gasps at the appeal of the idea and grinds herself against you hungrily. <<if ($activeSlave.vaginalAccessory is "chastity belt")>> It's her butt you're fucking, but that doesn't disrupt her fantasy.<<set $activeSlave.analCount += 1>><<set $analTotal += 1>><<else>>She's already pregnant, but that doesn't disrupt her fantasy of being even more pregnant.<<set $activeSlave.vaginalCount += 1>><<set $vaginalTotal += 1>><</if>>
 	  <<else>>
 		tell her to join you on the couch. <<if $PC.dick == 1>>You orgasm inside her promptly, and then tell her you'll be leaving your seed inside her to do its work while you have her again.<<else>>You use a strap-on with a fluid reservoir, and you trigger it promptly, releasing a gush of warm fluid into her. You tell her you'll be leaving it inside her to do its work while you have her again.<</if>> She gasps at the appeal of the idea and grinds herself against you hungrily. <<if ($activeSlave.vagina < 1) || ($activeSlave.vaginalAccessory is "chastity belt")>> It's her butt you're fucking, but that doesn't disrupt her fantasy.<</if>>
 		<<set $activeSlave.analCount += 1>>
@@ -7441,8 +7441,8 @@ By the time she wakes up from the anesthesia, you've already made the necessary
        <<set $activeSlave.trust -= 10>>
        <<set $activeSlave.vagina += 1>>
        <<set $activeSlave.vaginalCount += 10>>
-       <<set $activeSlave.analcount += 5>>
-       <<set $activeSlave.oralcount += 15>>
+       <<set $activeSlave.analCount += 5>>
+       <<set $activeSlave.oralCount += 15>>
        <<set $analTotal += 5>>
        <<set $vaginalTotal += 10>>
        <<set $oralTotal += 15>>
diff --git a/src/uncategorized/clubAdvertisement.tw b/src/uncategorized/clubAdvertisement.tw
index 62dbe2725020457fd8265437bee8ed1153647fb8..24d3ca246b31f2597e68ca6363ea5e4ff3855e7c 100644
--- a/src/uncategorized/clubAdvertisement.tw
+++ b/src/uncategorized/clubAdvertisement.tw
@@ -27,7 +27,7 @@
 <<elseif $arcologies[0].FSGenderRadicalistDecoration >= 60>>
 	$clubNameCaps has a gaudy appearance. There are a lot of neon lights and there are screens everywhere, showing closeups of cocks fucking every imaginable orifice.
 <<elseif $arcologies[0].FSGenderFundamentalistDecoration >= 60>>
-	$clubNameCaps has an old world appearance, a decidely throwback atmosphere harking back to the glory days of cultures past.
+	$clubNameCaps has an old world appearance, a decidedly throwback atmosphere harking back to the glory days of cultures past.
 <<elseif $arcologies[0].FSPhysicalIdealistDecoration >= 60>>
 	$clubNameCaps isn't a gym, but it smells like one. The dancing is rough and competitive, and the drinks are rich with protein.
 <<elseif $arcologies[0].FSSupremacistDecoration >= 60>>
diff --git a/src/uncategorized/economics.tw b/src/uncategorized/economics.tw
index 9f03a423355c7d52a7cf12270e52235dcce9044c..0d44a7843bde170677566b66ee15d1258583cf42 100644
--- a/src/uncategorized/economics.tw
+++ b/src/uncategorized/economics.tw
@@ -904,12 +904,12 @@ On formal occasions, you are announced as $PCTitle.
 	<</if>>
 <</if>>
 
-<<if ($PC.boobs == 1 && $PC.boobsBonus > 0) || $PC.preg >= 8>>
+<<if ($PC.boobs == 1 && $PC.boobsBonus > 0) || $PC.preg >= 8 || $playerAging != 0>>
 <br><br>
 
 __Personal Notes__
 <br>
-
+<<if ($playerAging != 0)>>Your birthday is <<if $PC.birthWeek is 51>>next week<<if $playerAging == 2>>; you'll be turning <<print $PC.actualAge+1>><</if>><<else>>in <<print 52-$PC.birthWeek>> weeks<</if>>.<</if>>
 <<if $PC.career == "servant">>
 <<if $PC.boobs == 1 && $PC.boobsBonus > 0>>
 	<<if $PC.boobsBonus > 2>>
diff --git a/src/uncategorized/main.tw b/src/uncategorized/main.tw
index c91ba4b13d894fdadd0a7ea300c869527c3f42cd..1470b3f53ff5ab5e04c06121ffb894a4904e36a9 100644
--- a/src/uncategorized/main.tw
+++ b/src/uncategorized/main.tw
@@ -52,8 +52,8 @@
 <<if ndef $PC.physicalAge>>
 	<<set $PC.physicalAge = $PC.actualAge>>
 <</if>>
-<<if ndef $PC.birthweek>>
-	<<set $PC.birthweek = 0>>
+<<if ndef $PC.birthWeek>>
+	<<set $PC.birthWeek = 0>>
 <</if>>
 
 <<set $currentRule to $defaultRules[0]>>
diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw
index 89edc46d0e63ef71580c047398c69ef4b83c1959..25f1c28d0bab98c16bd37bee184c28466619e362 100644
--- a/src/uncategorized/nextWeek.tw
+++ b/src/uncategorized/nextWeek.tw
@@ -13,6 +13,9 @@
 
 <<if $playerAging != 0>>
 	<<set $PC.birthWeek += 1>>
+	<<if $PC.physicalAge >= 55 && ($PC.preg == -1 || $PC.preg == 0)>>
+		<<set $PC.preg = -2>>
+	<</if>>
 	<<if $PC.birthWeek >= 52>>
 		<<set $PC.birthWeek to 0>>
 		<<if $playerAging == 2>>
diff --git a/src/uncategorized/officeDescription.tw b/src/uncategorized/officeDescription.tw
index a1134764d3d3025e39caaad04ab187bed7187759..c120876b91aab9d8da88cb72dde902575e5371be 100644
--- a/src/uncategorized/officeDescription.tw
+++ b/src/uncategorized/officeDescription.tw
@@ -126,6 +126,7 @@ There's a display case behind your desk,
 <</if>>
 
 A small mirror resides on your desk, facing you.
+<<if ($playerAging != 0)>><<if $PC.birthWeek is 51>>You'll be turning <<print $PC.actualAge+1>> next week.<</if>><</if>>
 <<if $PC.boobsBonus > 0 || $PC.preg > 2>>
 	<<if $PC.boobsBonus > 0>>
 		<<if $PC.boobsBonus > 2>>
diff --git a/src/uncategorized/saDevotion.tw b/src/uncategorized/saDevotion.tw
index d18a838e4080f6696fce2d5dba6253b08172aaed..d432cd6a9814abc0fde52198e3c7d0ed08c3da44 100644
--- a/src/uncategorized/saDevotion.tw
+++ b/src/uncategorized/saDevotion.tw
@@ -491,7 +491,7 @@
 	<</if>>
 	<<set $slaves[$i].devotion += $freeSexualEnergy>>
 	<<set $slaves[$i].oralCount += $freeSexualEnergy>>
-	<<set $oralotal += $freeSexualEnergy>>
+	<<set $oralTotal += $freeSexualEnergy>>
 	<<if canDoVaginal($slaves[$i])>>
 		<<set $slaves[$i].vaginalCount += $freeSexualEnergy>>
 		<<set $vaginalTotal += $freeSexualEnergy>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 3d8bddd43d32329b95ac7b41a80238fc218edcb3..95d46ee8944279c2d12108b46129374fd110f89e 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -3745,7 +3745,7 @@ and ($slaves[$i].clothes != "a slutty qipao") and ($slaves[$i].clothes != "restr
 			<<set $slaves[$i].pregSource to -1>>
 		<<elseif $slaves[$i].relationship > 2 and canAchieveErection($tempLover) and $tempLover.dickAccessory != "chastity" && $tempLover.pubertyXY == 1 and canBreed($slaves[$i], $tempLover)>>
 			<<set $slaves[$i].pregSource to $tempLover.ID>>
-		<<elseif $slaves[$i].rivalry > 2 and canAchieveErection($tempRival) and $tempRival.dickAccessory != "chastity" && $tempRival.pubertyXY == 1 and canBreed($slaves[$i], $tempRival) and $Seed > 95>>/* raped and knocked up by rival */
+		<<elseif $slaves[$i].rivalry > 2 and canAchieveErection($tempRival) and $tempRival.dickAccessory != "chastity" && $tempRival.pubertyXY == 1 and canBreed($slaves[$i], $tempRival) and $seed > 95>>/* raped and knocked up by rival */
 			<<set $slaves[$i].pregSource to $tempRival.ID>>
 		<<elseif $slaves[$i].subTarget != 0 and $slaves[$i].assignment is "be a subordinate slave">>
 			<<if canAchieveErection($tempSub) and $slaves[$m].dickAccessory != "chastity" && $tempSub.pubertyXY == 1 and canBreed($slaves[$i], $tempSub)>>
diff --git a/src/uncategorized/saTakeClasses.tw b/src/uncategorized/saTakeClasses.tw
index 870a53e42421063bf18e0d785644a902b45411e4..1ac8809486b148c80fb39bd9dfbf157b89a64974 100644
--- a/src/uncategorized/saTakeClasses.tw
+++ b/src/uncategorized/saTakeClasses.tw
@@ -152,6 +152,9 @@ takes courses in slavery<<if $schoolroomUpgradeSkills + $schoolroomUpgradeRemedi
 		<<if ($slaves[$i].accent > 3)>>
 			She has @@color:green;learned some $language,@@ and can make her point with some gesturing, though she speaks $language horribly.
 			<<set $slaves[$i].accent -= 1>>
+			<<if $slaves[$i].speechRules = "language lessons">>
+				<<set $slaves[$i].speechRules = "accent elimination">>
+			<</if>>
 		<<elseif ($slaves[$i].accent == 3)>>
 		She has @@color:green;learned functional $language,@@ and can make herself understood, though her $slaves[$i].nationality accent is still quite heavy.
 		<<set $slaves[$i].accent -= 1>>
diff --git a/src/utility/artWidgets.tw b/src/utility/artWidgets.tw
index c6410d46f5e8436848c27e056f18bb65381dcd9d..b1222338befe292f5dbb9fcee461e75f141db0e7 100644
--- a/src/utility/artWidgets.tw
+++ b/src/utility/artWidgets.tw
@@ -327,12 +327,12 @@ $args[2]: icon UI Display for vector art, 1 for on.
 	<<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize +".svg'" + "/></object>">>
 	<<print "<object type='image/svg+xml' data=" + _imgSkinLoc + "/boob " +_boobSize + " areola.svg'" + "/></object>">>
 <</if>>
-<<if$args[0].nipplesPiercing ==1>>
+<<if $args[0].nipplesPiercing == 1>>
 	<<print "<object type='image/svg+xml' data=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing.svg'" + "/></object>">>
-<<elseif$args[0].nipplesPiercing ==2>>
+<<elseif $args[0].nipplesPiercing == 2>>
 	<<print "<object type='image/svg+xml' data=" + _folderLoc + "/body/addon/boob " +_boobSize +" piercing heavy.svg'" + "/></object>">>
 <</if>>
-<<if$args[0].areolaePiercing ==1>>
+<<if $args[0].areolaePiercing == 1>>
 	<<print "<object type='image/svg+xml' data=" + _folderLoc + "/body/addon/boob " +_boobSize +" areola piercing.svg'" + "/></object>">>
 <</if>>