diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index dde5f8948af3d0b737969e187958f2e4fd563c5a..2f0e726b7ab99ed453b0005ee284db6ca165b943 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -826,7 +826,7 @@ DairyRestraintsSetting($dairyRestraintsSetting)
 <<set $clinicInflateBelly = 0>>
 <<set $playerBred = 0>>
 <<set $propOutcome = 0>>
-<<set $EliteSires = ["moves", "quick", "crazy", "virgin", "futa", "preggo"]>>
+<<set $EliteSires = ["crazy", "futa", "moves", "preggo", "quick", "virgin"]>>
 <<set $startingPoint = -1>>
 <<set $PhysicalRetirementAgePolicy = 0>>
 <<set $raped = -1>>
@@ -925,8 +925,8 @@ DairyRestraintsSetting($dairyRestraintsSetting)
 <<set $marketAssistantLimit = 0>>
 <<set $marketAssistantAggressiveness = 0>>
 
-<<set $justiceEvents = ["slave deal", "slave training", "majority deal", "indenture deal", "virginity deal", "breeding deal"]>> /* not in setupVars because we remove events from this array as they occur */
-<<set $prisonCircuit = ["low tier criminals", "gangs and smugglers", "white collar", "military prison"]>>
+<<set $justiceEvents = ["breeding deal", "indenture deal", "majority deal", "slave deal", "slave training", "virginity deal"]>> /* not in setupVars because we remove events from this array as they occur */
+<<set $prisonCircuit = ["gangs and smugglers", "low tier criminals", "military prison", "white collar"]>>
 <<set $prisonCircuitIndex = random(0,$prisonCircuit.length-1)>>
 
 <<set $fixedNationality = 0>>
diff --git a/src/pregmod/theCattleRanch.tw b/src/pregmod/theCattleRanch.tw
index 03044c1a8d5a42456b6a5e4c986771ee547024e5..2d8769e237e47e31158b49b3d237215beb1b57ff 100644
--- a/src/pregmod/theCattleRanch.tw
+++ b/src/pregmod/theCattleRanch.tw
@@ -26,9 +26,9 @@
 <<if $cash >= $slaveCost>>
 	<br>[["Buy " + $him + " and check out other cows to order"|The Cattle Ranch][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $newSlaves.push($activeSlave), $introType = "multi", $slavesSeen+=1]]
 	<<if $newSlaves.length == 0>>
-		<br>[["Buy " + $him + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
+		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $his + " and Finish your order of cattle"|Bulk Slave Intro][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $his + " and finish your order of cattle"|Bulk Slave Intro][$cash -= $slaveCost, $TCR.schoolSale = 0, $TCR.studentsBought += 1, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/pregmod/theHippolytaAcademy.tw b/src/pregmod/theHippolytaAcademy.tw
index f672452c743d3ca4d2342b92c95ef809122d6fae..1d32b662f8ff776d6a08d83c3bfeab0517d3e0f1 100644
--- a/src/pregmod/theHippolytaAcademy.tw
+++ b/src/pregmod/theHippolytaAcademy.tw
@@ -37,7 +37,7 @@ The Hippolyta Academy is one of the most famous slave bodyguarding schools in al
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $HA.schoolSale = 0, $HA.studentsBought += 1, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/pregmod/wetwareCPUs.tw b/src/pregmod/wetwareCPUs.tw
index 3a6727008b4a2698364d8d16ea78ca164efb5350..c07f9580516f7903fcc4b9b626947bd910bc6497 100644
--- a/src/pregmod/wetwareCPUs.tw
+++ b/src/pregmod/wetwareCPUs.tw
@@ -23,7 +23,7 @@
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/uncategorized/fsDevelopments.tw b/src/uncategorized/fsDevelopments.tw
index d3d8a73df118b479b797881a2539ef4f9dacc7ca..33495aa86e06c88bcad4cf9c234ce1522dd65012 100644
--- a/src/uncategorized/fsDevelopments.tw
+++ b/src/uncategorized/fsDevelopments.tw
@@ -7,8 +7,8 @@
 					[6000,9000,12000,15000],
 					[6000,9000,12000,15000,18000],
 					[6000,9000,12000,15000,17000,19000]]>>
-<<set _FSRepDescriptors = ["solid","high","remarkable","great","excellent","unparalleled"]>>
-<<set _ordinalNames = ["second","third","fourth","fifth","sixth","seventh"]>>
+<<set _FSRepDescriptors = ["solid", "high", "remarkable", "great", "excellent", "unparalleled"]>>
+<<set _ordinalNames = ["second", "third", "fourth", "fifth", "sixth", "seventh"]>>
 <<if $FSCredits > 0>>
 	@@.yellow;$arcologies[0].name's society is ready to begin accepting a new societal direction.@@
 <</if>>
diff --git a/src/uncategorized/growthResearchInstitute.tw b/src/uncategorized/growthResearchInstitute.tw
index 4a3e652f1d02c949bbd297b3e4ff1d725f3cfc81..cead9b5cfa20355ad8d5acd2449d1984a76d0c4f 100644
--- a/src/uncategorized/growthResearchInstitute.tw
+++ b/src/uncategorized/growthResearchInstitute.tw
@@ -29,7 +29,7 @@
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $newSlaves.push($activeSlave)]]
+		<br>[[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $GRI.schoolSale = 0, $GRI.studentsBought += 1, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/uncategorized/lecoleDesEnculees.tw b/src/uncategorized/lecoleDesEnculees.tw
index 8bc796ade279c2bede5367de054d697bdd183a10..b6b64f110b3ee20f8b38793ab73dbc1a02759f27 100644
--- a/src/uncategorized/lecoleDesEnculees.tw
+++ b/src/uncategorized/lecoleDesEnculees.tw
@@ -28,7 +28,7 @@
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $LDE.schoolSale = 0, $LDE.studentsBought += 1, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index 5b68dd05b5b29dc4d0d59e75476bcb8b062c0446..561cb04b8b80066fa6aaa8e155e0db9921479ed0 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -1148,7 +1148,7 @@ is
 
 <<if $activeSlave.fuckdoll == 0>>
 	<<if $showBodyMods == 1>>
-		<<if ["neck", "left cheek", "right cheek", "cheeks", "left ears", "right ears", "ears"].includes($activeSlave.brandLocation)>>
+		<<if ["cheeks", "ears", "left cheek", "left ears", "neck", "right cheek", "right ears"].includes($activeSlave.brandLocation)>>
 			<<brandDescription>>
 		<</if>>
 	<</if>>
@@ -1944,7 +1944,7 @@ $He is
 <<if $activeSlave.fuckdoll == 0>>
 	<<if $showBodyMods == 1>>
 		/* Check it's not a facial brand: */
-		<<if ["back", "lower back", "chest", "right shoulder", "left shoulder", "shoulders", "right upper arm", "left upper arm", "upper arms", "right lower arm", "left lower arm", "lower arms", "right wrist", "left wrist", "wrists", "right hand", "left hand", "hands", "left ankle", "right ankle", "ankles", "right calf", "left calf", "calves", "right foot", "left foot", "feet"].includes($activeSlave.brandLocation)>>
+		<<if ["ankles", "back", "calves", "chest", "feet", "hands", "left ankle", "left calf", "left foot", "left hand", "left lower arm", "left shoulder", "left upper arm", "left wrist", "lower arms", "lower back", "right ankle", "right calf", "right foot", "right hand", "right lower arm", "right shoulder", "right upper arm", "right wrist", "shoulders", "upper arms", "wrists"].includes($activeSlave.brandLocation)>>
 			<<brandDescription>>
 		<</if>>
 	<</if>>
diff --git a/src/uncategorized/reRelativeRecruiter.tw b/src/uncategorized/reRelativeRecruiter.tw
index 4a8d7d7044efb1c5b9bdbe9ae24856d4ffda4b0c..6a75416100072a707330b1e171f2adda35bd20cb 100644
--- a/src/uncategorized/reRelativeRecruiter.tw
+++ b/src/uncategorized/reRelativeRecruiter.tw
@@ -22,6 +22,7 @@
 <</if>>
 
 <<run Enunciate($eventSlave)>>
+<<setLocalPronouns $eventSlave>>
 
 <<set _recruitedType = []>>
 <<if $eventSlave.mother == 0 && $activeSlave.actualAge < 24 && $seeDicks != 100>>
@@ -134,12 +135,12 @@
 	<<set WombFlush($activeSlave)>>
 	<<run SetBellySize($activeSlave)>>
 
-	$eventSlave.slaveName requests an interview with you. She's a devoted slave, and you grant it, and are happy you did when you see the troubled expression on her face. She explains<<if !canTalk($eventSlave)>> with desperate gestures<</if>> that
+	$eventSlave.slaveName requests an interview with you. $He's a devoted slave, and you grant it, and are happy you did when you see the troubled expression on her face. $He explains<<if !canTalk($eventSlave)>> with desperate gestures<</if>> that
 	<<switch _relationType>>
 	<<case "daughter">>
 		she had a daughter, who was sent to the slave orphanages. She's heard a rumor through other slaves that her daughter will go up for sale soon.
 	<<case "son">>
-		she had a son, who was sent to the slave orphanages. She's heard a rumor through other slaves that her son will go up for sale soon.
+		she had a son, who was sent to the slave orphanages. $He's heard a rumor through other slaves that her son will go up for sale soon.
 	<<case "mother">>
 		her mother might be getting sold soon. She has been a slave for some time. She's heard a rumor through other slaves that her mother will go up for sale soon.
 	<<case "father">>
@@ -157,7 +158,7 @@
 	<</switch>>
 
 <<if !canTalk($eventSlave)>>She urgently gestures for permission to write. It's unusual, but she seems quite serious, so you grant it. She writes,<</if>>
-"You've been <<s>>o good to me, <<Master>>. I'm <<s>>ure <<sh>>e look<<s>> like I did when you bought me. Plea<<s>>e, <<Master>>, will you buy her like you bought me? I'm afraid <<sh>>e'll go to a cruel Ma<<s>>ter." She bites her lip. "And, <<Master>>, I'm <<s>>ure <<sh>>e'd learn to love
+"You've been <<s>>o good to me, <<Master>>. I'm <<s>>ure <<sh>>e look<<s>> like I did when you bought me. Plea<<s>>e, <<Master>>, will you buy her like you bought me? I'm afraid <<sh>>e'll go to a cruel Ma<<s>>ter." $He bites $his lip. "And, <<Master>>, I'm <<s>>ure <<sh>>e'd learn to love
 <<if $eventSlave.fetish == "cumslut">>
 	the ta<<s>>te of your cum
 <<elseif $eventSlave.fetish == "submissive">>
@@ -840,7 +841,7 @@ $eventSlave.slaveName requests an interview with you. She's a devoted slave, and
 <<case "young sister">>
 	her younger sister is being sold. She was likely to be enslaved the last $eventSlave.slaveName knew of her, and now she's heard a rumor through other slaves that her little sister is going to be sold to a new owner.
 <<default>>
-	she has a twin sister, who was still free the last $eventSlave.slaveName knew of her. She's heard a rumor through other slaves that her twin has finally been enslaved, and will soon go up for sale.
+	she has a twin sister, who was still free the last $eventSlave.slaveName knew of her. $He's heard a rumor through other slaves that $his twin has finally been enslaved, and will soon go up for sale.
 <</switch>>
 <br><br>
 <<if !canTalk($eventSlave)>>She urgently gestures for permission to write. It's unusual, but she seems quite serious, so you grant it. She writes,<</if>>
diff --git a/src/uncategorized/saWhore.tw b/src/uncategorized/saWhore.tw
index 949c1bec05e9c68d0323927b12174a00218facf9..f6a144c2c048b355ee253e2c8f5326958fd4b887 100644
--- a/src/uncategorized/saWhore.tw
+++ b/src/uncategorized/saWhore.tw
@@ -122,7 +122,7 @@ $his body.
 		<<if ($slaves[$i].bellyImplant == -1)>>
 		<<if ($slaves[$i].faceImplant < 30)>>
 			<<set $beautyMultiplier += 0.05>>
-			Many citizens come to the brothel looking to play with a natural girl like $him.
+			Many citizens come to the brothel looking to play with a natural $girl like $him.
 		<</if>>
 		<</if>>
 		<</if>>
@@ -154,12 +154,12 @@ $his body.
 		<<if $brothelAdsXX == 1>>
 		<<if ($slaves[$i].dick == 0)>>
 			<<set $beautyMultiplier += 0.05>>
-			Almost everyone who comes to $brothelName is looking to fuck a girl like $him.
+			Almost everyone who comes to $brothelName is looking to fuck a $girl like $him.
 		<</if>>
 		<<elseif $brothelAdsXX == -1>>
 		<<if ($slaves[$i].dick > 0)>>
 			<<set $beautyMultiplier += 0.05>>
-			Almost everyone who comes to $brothelName is looking to pound a girl who cums when buttfucked.
+			Almost everyone who comes to $brothelName is looking to pound a $girl who cums when buttfucked.
 		<</if>>
 		<</if>>
 	<</if>>
@@ -198,7 +198,7 @@ $his body.
 			Unfortunately, $his inability to hear wastes most of $Madam.slaveName's advice.
 		<</if>>
 		<<if $MadamIgnoresFlaws != 1>>
-			<<if !["none", "neglectful", "cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "breeder"].includes($slaves[$i].sexualFlaw) && (random(1,100) > 90)>>
+			<<if !["abusive", "anal addict", "attention whore", "breast growth", "breeder", "cum addict", "malicious", "neglectful", "none", "self hating"].includes($slaves[$i].sexualFlaw) && (random(1,100) > 90)>>
 				<<= SlaveFullName($Madam)>> manages to @@.green;break@@ $slaves[$i].slaveName of $his sexual flaws.
 				<<set $slaves[$i].sexualFlaw = "none">>
 			<<elseif ($slaves[$i].behavioralFlaw != "none") && (random(1,100) > 90)>>
diff --git a/src/uncategorized/slaveMarkets.tw b/src/uncategorized/slaveMarkets.tw
index 70d9875430951b429af76f501f83e5cdc9af14f4..e4fde321faf77635ab1dea7cf17d1a6f756acb6c 100644
--- a/src/uncategorized/slaveMarkets.tw
+++ b/src/uncategorized/slaveMarkets.tw
@@ -200,7 +200,7 @@ The offered price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveM
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost,$nextButton = "Continue",$nextLink = "AS Dump",$returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/uncategorized/stClaverPreparatory.tw b/src/uncategorized/stClaverPreparatory.tw
index 09d7178d9fb8fbb68aacbe5fd67e29948f505cfb..bee475a6fcdb892516aaf9ca9887680c9c407b7c 100644
--- a/src/uncategorized/stClaverPreparatory.tw
+++ b/src/uncategorized/stClaverPreparatory.tw
@@ -28,7 +28,7 @@
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $SCP.schoolSale = 0, $SCP.studentsBought += 1, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw
index 0630e9348ce8a2db5a896e4c687956b009adf4c4..c9c0f369774237510a769e32ad61eff48ff20b2b 100644
--- a/src/uncategorized/surgeryDegradation.tw
+++ b/src/uncategorized/surgeryDegradation.tw
@@ -1961,7 +1961,7 @@ As the remote surgery's long recovery cycle completes,
 				$He was already an anal slut, but $he can now experience anal pleasure along an entirely new dimension. $He's @@.hotpink;extremely grateful,@@ and @@.lightsalmon;a more eager buttslut than ever.@@
 				<<set $activeSlave.devotion += 5, $activeSlave.fetishStrength = Math.clamp($activeSlave.fetishStrength+20,0,100)>>
 			<<else>>
-				As a sex slave, $he has of course heard of the pleasure of prostate stimulation,<<if $activeSlave.genes == "XY">> not to mention having once had one $himself,<</if>> and $he's @@.hotpink;duly grateful@@ that you've altered $him in a way that will make sexual duties more enjoyable.
+				As a sex slave, $he <<if canHear($activeSlave)>>has of course heard of<<else>>is of course familiar with<</if>> the pleasure of prostate stimulation,<<if $activeSlave.genes == "XY">> not to mention having once had one $himself,<</if>> and $he's @@.hotpink;duly grateful@@ that you've altered $him in a way that will make sexual duties more enjoyable.
 			<</if>>
 			<<set $activeSlave.devotion += 5>>
 		<<elseif ($activeSlave.devotion > 20)>>
diff --git a/src/uncategorized/theFutanariSisters.tw b/src/uncategorized/theFutanariSisters.tw
index 74d12311e7daa8764ab86d37a145c3386371fc01..7e1444389cbe4198dab5bc140216e15eaa276af3 100644
--- a/src/uncategorized/theFutanariSisters.tw
+++ b/src/uncategorized/theFutanariSisters.tw
@@ -123,7 +123,7 @@ The price is <<print cashFormat($slaveCost)>>.<<if $slavesSeen > $slaveMarketLim
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TFS.schoolSale = 0, $TFS.studentsBought += 1, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/uncategorized/theGymnasiumAcademy.tw b/src/uncategorized/theGymnasiumAcademy.tw
index 66a726510d8e940b25b2d57ee561cd77ee0903ac..5194021fe2773a115c9da7d16acf417bdb2dc570 100644
--- a/src/uncategorized/theGymnasiumAcademy.tw
+++ b/src/uncategorized/theGymnasiumAcademy.tw
@@ -28,7 +28,7 @@
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TGA.schoolSale = 0, $TGA.studentsBought += 1, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//
diff --git a/src/uncategorized/theSlavegirlSchool.tw b/src/uncategorized/theSlavegirlSchool.tw
index 9180622fb74b9d22d81fa983c9711fb04f2145b3..35886014b8cf5221f98104125db370774f57effc 100644
--- a/src/uncategorized/theSlavegirlSchool.tw
+++ b/src/uncategorized/theSlavegirlSchool.tw
@@ -28,7 +28,7 @@
 	<<if $newSlaves.length == 0>>
 		<br>[["Buy " + $his + " slave contract"|New Slave Intro][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Main"]]
 	<<else>>
-		<br>[["Buy " + $him + " and Finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $newSlaves.push($activeSlave)]]
+		<br>[["Buy " + $him + " and finish your order of slaves"|Bulk Slave Intro][$cash -= $slaveCost, $TSS.schoolSale = 0, $TSS.studentsBought += 1, $newSlaves.push($activeSlave)]]
 	<</if>>
 <<else>>
 	//You lack the necessary funds to buy this slave.//