diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw
index 4424c559584c029eb8b2cdf1dab730767abf36e1..1dd5f51e86e73d350c18b3c3cdffeb9d63e64119 100644
--- a/src/gui/Encyclopedia/encyclopedia.tw
+++ b/src/gui/Encyclopedia/encyclopedia.tw
@@ -956,6 +956,7 @@ __I do not give credit without explicit permission to do so.__ If you have contr
 ''anon'' for a prototype foot job scene.
 ''anon'' for writing forced marriages, extra escape outcomes and more player refreshment types.
 ''anon'' for global realism stave trade setting.
+''anon'' for new recruit events.
 ''Bane70'' optimized huge swaths of code with notable professionalism.
 ''Circle Tritagonist'' provided several new collars and outfits.
 ''Qotsafan'' submitted bugfixes.
diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index f0f53e9ee082b615955a100276d0cf0f92b07e3f..f2ff5f461cd2c8fc74dc5b3f2c009e8362f34728 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -18,14 +18,14 @@
 		<<if $slaves[_i].mother > 0>>
 			<<set $slaves[_i].mother += 1200000>>
 		<<elseif $freshPC == 1 && $slaves[_i].mother == -1>>
-			<<set $slaves[_i].mother -= 12000000>>
+			<<set $slaves[_i].mother = -12000000>>
 		<<elseif $slaves[_i].mother < -1>>
 			<<set $slaves[_i].mother -= 1200000>>
 		<</if>>
 		<<if $slaves[_i].father > 0>>
 			<<set $slaves[_i].father += 1200000>>
 		<<elseif $freshPC == 1 && $slaves[_i].father == -1>>
-			<<set $slaves[_i].father -= 12000000>>
+			<<set $slaves[_i].father = -12000000>>
 		<<elseif $slaves[_i].father < -1>>
 			<<set $slaves[_i].father -= 1200000>>
 		<</if>>
diff --git a/src/npc/acquisition.tw b/src/npc/acquisition.tw
index 6054e423d944315e09dbe5276056ffe82cd72d9a..aa34f46e55a2b55b500b3f0933d8c4cfbb76c6d0 100644
--- a/src/npc/acquisition.tw
+++ b/src/npc/acquisition.tw
@@ -47,10 +47,18 @@
 		<</if>>
 	<</if>>
 <<else>> /*testtest*/
-	<<set $PC.pregSource = 0>>
 	<<set $PC.sisters = 0>>
 	<<set $PC.daughters = 0>>
+<</if>> /*closes ng*/
+<<if $familyTesting == 1>>
+	<<set _pcMomFound = 0, _pcDadFound = 0>>
 	<<for _i = 0; _i < $slaves.length; _i++>>
+		<<if $PC.mother > 0 && $PC.mother == $slaves[_i].ID>>
+			<<set _pcMomFound = 1>>
+		<</if>>
+		<<if $PC.father > 0 && $PC.father == $slaves[_i].ID>>
+			<<set _pcDadFound = 1>>
+		<</if>>
 		<<if $slaves[_i].mother == $PC.ID || $slaves[_i].father == $PC.ID>>
 			<<set $PC.daughters += 1>>
 		<</if>>
@@ -58,7 +66,58 @@
 			<<set $PC.sisters += 1>>
 		<</if>>
 	<</for>>
-<</if>> /*closes ng*/
+	<<if _pcMomFound = 0 && $PC.mother > 0>>
+		<<set _lostMom = $PC.mother>>
+		<<set $PC.mother = $missingParentId>>
+		<<for _i = 0; _i < $slaves.length; _i++>>
+			<<if $slaves[_i].mother == _lostMom>>
+				<<set $slaves[_i].mother = $missingParentId>>
+			<</if>>
+		<</for>>
+		<<set $missingParentId-->>
+	<</if>>
+	<<if _pcDadFound = 0 && $PC.father > 0>>
+		<<set _lostDad = $PC.father>>
+		<<set $PC.father = $missingParentId>>
+		<<for _i = 0; _i < $slaves.length; _i++>>
+			<<if $slaves[_i].father == _lostDad>>
+				<<set $slaves[_i].father = $missingParentId>>
+			<</if>>
+		<</for>>
+		<<set $missingParentId-->>
+	<</if>>
+	<<for _i = 0; _i < $slaves.length; _i++>>
+		<<set _slaveMomFound = 0, _slaveDadFound = 0>>
+		<<for _j = 0; _j < $slaves.length; _j++>>
+			<<if $slaves[_i].mother > 0 && $slaves[_i].mother == $slaves[_j].ID>>
+				<<set _slaveMomFound = 1>>
+			<</if>>
+			<<if $slaves[_i].father > 0 && $slaves[_i].father == $slaves[_j].ID>>
+				<<set _slaveDadFound = 1>>
+			<</if>>
+		<</for>>
+		<<if _slaveMomFound = 0 && $slaves[_i].mother > 0>>
+			<<set _lostMom = $slaves[_i].mother>>
+			<<set $slaves[_i].mother = $missingParentId>>
+			<<for _j = 0; _j < $slaves.length; _j++>>
+				<<if $slaves[_j].mother == _lostMom>>
+					<<set $slaves[_j].mother = $missingParentId>>
+				<</if>>
+			<</for>>
+			<<set $missingParentId-->>
+		<</if>>
+		<<if _slaveDadFound = 0 && $slaves[_i].father > 0>>
+			<<set _lostDad = $slaves[_i].father>>
+			<<set $slaves[_i].father = $missingParentId>>
+			<<for _j = 0; _j < $slaves.length; _j++>>
+				<<if $slaves[_j].father == _lostDad>>
+					<<set $slaves[_j].father = $missingParentId>>
+				<</if>>
+			<</for>>
+			<<set $missingParentId-->>
+		<</if>>
+	<</for>>
+<</if>>
 
 You've done it.
 <br><br>
diff --git a/src/uncategorized/generateXXSlave.tw b/src/uncategorized/generateXXSlave.tw
index 843d68851e0f151abd31a649bc0ef16d21735f64..80858db9d2246d662855851fee392176ad397370 100644
--- a/src/uncategorized/generateXXSlave.tw
+++ b/src/uncategorized/generateXXSlave.tw
@@ -173,8 +173,8 @@
 	<<else>>
 		<<set _capUpgradeCheck = State.variables[$captureUpgradeRace.toLowerCase().replace(/[ -]/g, '')+'Nationalities']>>
 		<<set _capUpgradeNationalities = []>>
-		<<for _i = 0; _i < _capUpgradeCheck.length; _i++>>
-			<<set _capNation = _capUpgradeCheck[_i]>>
+		<<for _u = 0; _u < _capUpgradeCheck.length; _u++>>
+			<<set _capNation = _capUpgradeCheck[_u]>>
 			<<if $nationalities.includes(_capNation)>>
 				<<set _capUpgradeNationalities.push(_capNation)>>
 			<</if>>
diff --git a/src/uncategorized/generateXYSlave.tw b/src/uncategorized/generateXYSlave.tw
index ca57a1befb1c8fd9410bd3a83b3c2196d7f9ee50..d245239123b143ef94e7a05defeef442d17e4ce5 100644
--- a/src/uncategorized/generateXYSlave.tw
+++ b/src/uncategorized/generateXYSlave.tw
@@ -177,8 +177,8 @@
 	<<else>>
 		<<set _capUpgradeCheck = State.variables[$captureUpgradeRace.toLowerCase().replace(/[ -]/g, '')+'Nationalities']>>
 		<<set _capUpgradeNationalities = []>>
-		<<for _i = 0; _i < _capUpgradeCheck.length; _i++>>
-			<<set _capNation = _capUpgradeCheck[_i]>>
+		<<for _u = 0; _u < _capUpgradeCheck.length; _u++>>
+			<<set _capNation = _capUpgradeCheck[_u]>>
 			<<if $nationalities.includes(_capNation)>>
 				<<set _capUpgradeNationalities.push(_capNation)>>
 			<</if>>
diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw
index fcc2ecc946327a47c432524f03cec24355036a19..c93d8d1a5bb1bba65575d04c4b6693ec5c530ea3 100644
--- a/src/uncategorized/newSlaveIntro.tw
+++ b/src/uncategorized/newSlaveIntro.tw
@@ -34,6 +34,8 @@ The legalities completed, ''__@@.pink;$activeSlave.slaveName@@__'' <<if ($active
 	hoping she's made the right decision, and fantasizing a little, to go by her half-hard dick.
 <<elseif $activeSlave.origin == "She submitted to enslavement for a better chance at survival than she had as a migrant.">>
 	wondering what life as a sex slave will be like.
+<<elseif $activeSlave.origin == "She came to you to escape being sold to a cruel master after her producer informed her of her debt.">>
+	wondering if she will get to continue to perform for your people even as a slave.
 <<else>>
 	looking shyly at you and blushing.
 <</if>>
diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw
index e17d1fce3edb96d098184bb6704462c4bf7ec422..53cd613f7c900be5a1cd8b6ac4a58439cf867426 100644
--- a/src/uncategorized/randomNonindividualEvent.tw
+++ b/src/uncategorized/randomNonindividualEvent.tw
@@ -921,6 +921,9 @@
 	<<if $arcologies[0].FSEgyptianRevivalist > random(1,100)>>
 		<<set $events.push("RE FSEgyptianRevivalist acquisition")>>
 	<</if>>
+	<<if $arcologies[0].FSPaternalistDecoration == 100 && $minimumSlaveAge <= 14>>
+		<<set $recruit.push("paternalist swan song")>>
+	<</if>>
 	<<set $FSNonconformistEvents = []>>
 	<<if $arcologies[0].FSSupremacist < 95>><<if $arcologies[0].FSSupremacist > 50>>
 		<<set $FSNonconformistEvents.push("Supremacist")>>
diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index a6daa1a93eeb59c7fb980a196831fa275b75b3ba..9dbf058d2c1a9173b96da43c6b127707e3d3932e 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -192,6 +192,44 @@ A young woman comes to your penthouse for an interview. You accepted her request
 
 A young <<if $activeSlave.physicalAge < 13>>girl<<elseif $activeSlave.physicalAge < 18>>teen<<else>>woman<</if>> struggles into your penthouse for an interview. You accepted her request to see you because she took the unusual step of promising to sell herself to you if you would admit her. The reason for this odd behavior becomes clear when she enters. She is gingerly feeling her way towards your desk, before finding it and straightening up, giving you a good look at her body. She is clothed in rags and dangerously thin, save for a notable roundness in her middle. She shakily makes her case. "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Sir<<else>>Ma'am<</if>>, I'm desperate. My home was repossessed and I was forced onto the street. And the street is no place for a blind girl. T-they", she place a hand on her stomach, "took advantage of my helplessness. For months, they fucked me whenever they wanted, and in return the gave me next to no food and this child!" She stamps her foot angrily, before continuing, "but I thought, you would be far better than that life, a slow death on the streets." She tears up and awaits your response.
 
+<<elseif $recruit == "paternalist swan song">>
+
+<<set $activeSlaveOneTimeMinAge = 10>>
+<<set $activeSlaveOneTimeMaxAge = 14>>
+<<include "Generate New Slave">>
+<<set $activeSlave.origin = "She came to you to escape being sold to a cruel master after her producer informed her of her debt.">>
+<<set $activeSlave.career = "a musician">>
+<<set $activeSlave.devotion = random(30,100)>>
+<<set $activeSlave.trust = random(30,100)>>
+<<set $activeSlave.health = random(0,100)>>
+<<set $activeSlave.anus = 0>>
+<<set $activeSlave.vagina = 1>>
+<<set $activeSlave.vaginalSkill = 0>>
+<<set $activeSlave.oralSkill = 0>>
+<<set $activeSlave.analSkill = 0>>
+<<set $activeSlave.earPiercing = 0>>
+<<set $activeSlave.nosePiercing = 0>>
+<<set $activeSlave.eyebrowPiercing = 0>>
+<<set $activeSlave.navelPiercing = 0>>
+<<set $activeSlave.behavioralFlaw = "none">>
+<<set $activeSlave.hStyle = "neat">>
+<<set $activeSlave.pubicHStyle = "waxed">>
+<<set $activeSlave.underArmHStyle = "waxed">>
+<<set $activeSlave.intelligenceImplant = 1>>
+<<set $activeSlave.intelligence = 3>>
+<<set $activeSlave.prestige = 3>>
+<<set $activeSlave.prestigeDesc = "She was a famous young musical prodigy know throughout both the old world and the free cities.">>
+<<set $activeSlave.accent = 1>>
+
+Not every day in the arcology is a calm and this one is most certainly more energetic than usual.
+<<if $terrain != "oceanic">>
+	It seems there is a large crowd is gathering along the road extending from the front gate as a small convoy of luxury vehicles rolls in. Your arcology isn't immune to outside old world influences, and the person in the center vehicle so happens to be just such a force.
+<<elseif $terrain == "oceanic">>
+	It seems there is a large crowd is gathering along the canal extending from the front gate as a small convoy of luxury yachts sails in. Your arcology isn't immune to outside old world influences, and the person on the center yacht so happens to be such a force.
+<</if>>
+Recently, a young musical prodigy has taken both the old world and the free cities by storm. Their rising popularity has gained them quite a following and the attention of some very powerful people. You look at the schedule of events for citizens tonight and, sure enough, they are to appear, live in concert, tonight. You tell $assistantName to set up a live feed of the performance for you so as not to interrupt your work. Several hours later, the young artist comes out on stage to a full house. They perform their latest hits and some fan favorites, but it's the crowd suddenly going silent that disturbs you from your paperwork. You look at the feed to see the artist standing there, a sullen expression on their face, tears streaming down their cheeks, and their body jerking, obviously wracked by occasional sobbing. They take a very quick bow and run off stage, before the feed gets cut. You shrug, artists have breakdowns and return to your tasks. Surprisingly, $assistantName chimes in to tell you that an unexpected guest has arrived. You have them sent in and are suprised to see the young, visibly distressed prodigy.
+"I was told by my producer to come here, they say I have earned enough of a debt to be enslaved. I heard that slaves seem to be treated well here and thought that, just maybe, if I convinced them to let my final perfomance be here, I would have a chance at a better life than at another arcology owned by a crueler master. Please, would you consider taking me in?"
+
 <<elseif $recruit == "desperate milf">>
 
 <<set $activeSlaveOneTimeMinAge = $fertilityAge + $minimumSlaveAge>>
@@ -1527,7 +1565,7 @@ Your desk flags a video message as having potential. It's a desperate refugee fr
 	<<set $contractCost = 5000>>
 <<case "CCS angel">>
 	<<set $contractCost = 7500>>
-<<case "racer winner" "captured teen">>
+<<case "racer winner" "captured teen" "paternalist swan song">>
 	<<set $contractCost = 10000>>
 <<case "repo housekeeper" "repo nanny" "farm cow" "farm bull">>
 	<<set $contractCost = 2500>>
@@ -1567,6 +1605,8 @@ Your desk flags a video message as having potential. It's a desperate refugee fr
 	She cooperates as the biometric scanners scrupulously record her every particular as belonging not to a person but to a piece of human property. She willingly places her biometric signature in testament to the truth of her voluntary enslavement. The process is completed with a distinct anticlimax: she is one of your slaves now. She looks almost relaxed, as though she's at peace, now.
 	<<elseif $recruit == "blind homeless">>
 	She cooperates as the biometric scanners scrupulously record her every particular as belonging not to a person but to a piece of human property. She willingly places her biometric signature in testament to the truth of her voluntary enslavement. The process is completed with a distinct anticlimax: she is one of your slaves now. She gives you a smile, knowing she'll have a belly full of food before long.
+	<<elseif $recruit == "paternalist swan song">>
+	She thanks you profusely for purchasing her, and she means it. She's relieved to have been bought by a kind master and promises to give you a private performance when ever you want.
 	<<elseif $recruit == "tg addict">>
 	When she awakes from surgery, she slowly realizes that whatever she programmed the remote surgery to do wasn't done; instead, she's a young woman with a flat chest and a new virgin pussy. It takes a while for you to get her to understand, through her tears, that she is now obliged to accept enslavement due to her extreme debts. Eventually she figures it out and glares daggers at you as she signs her life away.
 	<<elseif $recruit == "school sale">>
@@ -1668,6 +1708,8 @@ Your desk flags a video message as having potential. It's a desperate refugee fr
 	She cooperates as the biometric scanners scrupulously record her every particular as belonging not to a person but to a piece of human property. She willingly places her biometric signature in testament to the truth of her voluntary enslavement. When a purchaser's agent arrives to take her away, though, she becomes afraid. "W-will they h-hurt my baby?" she asks plaintively. You tell her no, she's been bought by a slave dairy. She'll be permitted to carry her pregnancy to term, since it'll enhance her milk production; and within a few weeks after that, she'll be impregnated again. And again.
 	<<elseif $recruit == "blind homeless">>
 	She cooperates as the biometric scanners scrupulously record her every particular as belonging not to a person but to a piece of human property. She willingly places her biometric signature in testament to the truth of her voluntary enslavement. When a purchaser's agent arrives to take her away, though, she becomes uneasy. "Will they have food?" she asks plaintively. You tell her yes, all she can hold, she's been bought by a slave dairy. She'll be fattened up and forced to carry her pregnancy to term, since it'll enhance her milk production; and within a few weeks after that, she'll be impregnated again. And again. But she won't be on the streets anymore.
+	<<elseif $recruit == "paternalist swan song">>
+	She thanks you profusely for purchasing her and before you get the chance to correct her, a purchaser's agent arrives to take her away. She looks at you in terror, beginning to sob at having trusted you. You place a hand on her shoulder and reassure her; she has many fans in $arcologies[0].name that would love to treat her with the kindness she deserves and you made sure the nicest of the bunch was the one who bought her contract. She brightens up upon hearing your words and leaves the penthouse smiling as the agent talks about all the preperations her new owner has set up for her.
 	<<elseif $recruit == "desperate milf">>
 	She cooperates as the biometric scanners scrupulously record her every particular as belonging not to a person but to a piece of human property. She willingly places her biometric signature in testament to the truth of her voluntary enslavement. A purchasing agent appears to take her away, which she accepts resignedly, though she does ask you who purchased her. You tell her that her ample breasts have gotten her bought by a slave dairy; she looks thoughtful. "I'm going to be a cow?" She turns her torso a little, sloshing her breasts from side to side. "Well, that doesn't sound //too// bad. Thank you."
 	<<elseif $recruit == "tg addict">>
diff --git a/src/uncategorized/shops.tw b/src/uncategorized/shops.tw
index 2bf94fd38237dba7f9fb7ed06ede7e062246e98d..d4edc5430d63576a4565e00e65dd048244129b0b 100644
--- a/src/uncategorized/shops.tw
+++ b/src/uncategorized/shops.tw
@@ -72,13 +72,13 @@ This is a section of the promenade
 	dedicated to Repopulationism. The shops here offer a lovely mix of sex toys, fertility agents, maternity wear and furniture to fit even the biggest pregnancy. An attractive slave salesgirl with a huge belly is demonstrating the proper use of a swing designed to accommodate her added heft to a female citizen just beginning to show and her curious husband.
 	<span id="result"><<link "Give the swing a try">><<replace "#result">>You wait for the couple to leave before approaching the hapless girl and placing a hand on her vulnerable middle. She squeaks in surprise before she realizes just who is browsing her toys and the goods between her legs. <<if $PC.preg > 20>>Spreading her legs, you find that she is suspended at the perfect height for you to comfortably penetrate her; or she would be, if your own rounded middle wasn't pushing into her own. She asks for a little help getting down, and afterwards, shows you to a series of harness designed to hold a girl with her belly dangling beneath her. The perfect toy for the very pregnant slaveowner hoping to plow her equally gravid chattel.<<elseif $PC.dick == 1>>Spreading her legs, you find that she is suspended at the perfect height for you to comfortably penetrate her.<<else>> Picking out an attractive strap-on, donning it, and spreading her legs, you find that she is suspended at the perfect height for you to comfortably penetrate her.<</if>> Even better, the swing handles her weight, so no sprained back!<</replace>><</link>></span>
 <<case "Eugenics">>
-	dedicated to Eugenics. You knew the individuals drawn into your society had connections, but you had no idea they were this extensive! If you can think of it, a shop here is selling it; though they are not cheap, only the the finest available merchandise is for sale here. Numerous recognizable faces browse the storefronts, accompanied by their favorite chattel, and upon noticing you, vie for your valuable attention.
+	dedicated to Eugenics. You knew the individuals drawn into your society had connections, but you had no idea they were this extensive! If you can think of it, a shop here is selling it; though they are not cheap, only the finest available merchandise is for sale here. Numerous recognizable faces browse the storefronts, accompanied by their favorite chattel, and upon noticing you, vie for your valuable attention.
 	<<if $PC.preg > 20 && $PC.pregSource == -1>>
-		<span id="result"><<link "Shop around">><<replace "#result">>You decide to waddle between the shops; with so much fine merchandise on offer, it's possible that someone's selling something to fufill your growing craving, and it's always good to see and be seen, especially with a middle rounded with a superiour child. The slave salesgirls are accommodating and welcoming, most are so well-trained that they treat you with the respect a memeber of the Societal Elite deserves. They all offer you the peculiar straight-down curtsey that allows them lift their skirts, reveiling the appropriate chastity.<</replace>><</link>></span>
+		<span id="result"><<link "Shop around">><<replace "#result">>You decide to waddle between the shops; with so much fine merchandise on offer, it's possible that someone's selling something to fulfill your growing cravings, and it's always good to see and be seen, especially with a middle rounded with a superior child. The slave salesgirls are accommodating and welcoming, most are so well-trained that they treat you with the respect a memeber of the Societal Elite deserves. They all offer you a curtsey that allows them lift their skirts, reveiling the appropriate chastity. You end up leaving the stores with bags and bags of exotic foods and treats as well as a cute dress that shows off your pregnancy.<</replace>><</link>></span>
 	<<elseif $PC.title == 1>>
-		<span id="result"><<link "Shop around">><<replace "#result">>You decide to wander between the shops; with so much fine merchandise on offer, it's possible that someone's selling something to catch your descerning eye, and it's always good to see and be seen. The slave salesgirls are welcoming and most are so well-trained that they treat you with the respect a memeber of the Societal Elite deserves. They all offer you the peculiar straight-down curtsey that allows them lift their skirts, reveiling the appropriate chastity. You end up leaving the stores with several fancy chastity belts and an amazing suit you can't wait to debute at your next social meeting.<</replace>><</link>></span>
+		<span id="result"><<link "Shop around">><<replace "#result">>You decide to wander between the shops; with so much fine merchandise on offer, it's possible that someone's selling something to catch your descerning eye, and it's always good to see and be seen. The slave salesgirls are welcoming and most are so well-trained that they treat you with the respect a memeber of the Societal Elite deserves. They all offer you a curtsey that allows them lift their skirts, reveiling the appropriate chastity. You end up leaving the stores with several fancy chastity belts and an amazing suit you can't wait to debute at your next social meeting.<</replace>><</link>></span>
 	<<else>>
-		<span id="result"><<link "Shop around">><<replace "#result">>You decide to wander between the shops; with so much fine merchandise on offer, it's possible that someone's selling something to catch your descerning eye, and it's always good to see and be seen. The slave salesgirls are welcoming and most are so well-trained that they treat you with the respect a memeber of the Societal Elite deserves. They all offer you the peculiar straight-down curtsey that allows them lift their skirts, reveiling the appropriate chastity. You end up leaving the stores with several fancy chastity belts, a bag of tasty treats and an alluring dress you can't wait to debute at your next social meeting.<</replace>><</link>></span>
+		<span id="result"><<link "Shop around">><<replace "#result">>You decide to wander between the shops; with so much fine merchandise on offer, it's possible that someone's selling something to catch your descerning eye, and it's always good to see and be seen. The slave salesgirls are welcoming and most are so well-trained that they treat you with the respect a memeber of the Societal Elite deserves. They all offer you a curtsey that allows them lift their skirts, reveiling the appropriate chastity. You end up leaving the stores with several fancy chastity belts, a bag of tasty treats and an alluring dress you can't wait to debute at your next social meeting.<</replace>><</link>></span>
 	<</if>>
 <<default>>ERROR: bad sector type
 <</switch>>
diff --git a/src/uncategorized/slaveAssignmentsReport.tw b/src/uncategorized/slaveAssignmentsReport.tw
index b411d491861eb11b2cbf68a73bd5b0f479a0a80d..8a647968c6b990ea3c5ad785f13d25bed098a7c6 100644
--- a/src/uncategorized/slaveAssignmentsReport.tw
+++ b/src/uncategorized/slaveAssignmentsReport.tw
@@ -371,6 +371,7 @@
     ["Spa Report", $spaNameCaps, $spa, $spaSlaves, $Attendant, "Attendant"],
 /** ["Lab Report"], "Research Lab", $researchLab.built, $researchLab.hired + $researchLab.menials, -1, -1], **/
     ["Servants' Quarters Report", $servantsQuartersNameCaps, $servantsQuarters, $servantsQuartersSlaves, $Stewardess, "Stewardess"],
+    ["Incubator Report", $incubatorNameCaps, $incubator, $incubatorSlaves, -1, -1],
     ["Master Suite Report", $masterSuiteNameCaps, $masterSuite, $masterSuiteSlaves, $Concubine, "Concubine"],
     ["Penthouse Report", "The Penthouse", 1, $slavesVisible, -1, -1],
     ["Rules Assistant Report", "Rules Assistant", $rulesAssistantAuto, 1, -1, -1] /** should be last - may reassign slaves **/
diff --git a/src/utility/artWidgets.tw b/src/utility/artWidgets.tw
index a7dd4c4daf8b496462581007bb969b8f6d0e6818..b21aa15cab9df086ef5b283b9f72a34a64c9b4c5 100644
--- a/src/utility/artWidgets.tw
+++ b/src/utility/artWidgets.tw
@@ -387,7 +387,7 @@ $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>>
-	<set _needBoobs = 0>>
+	<<set _needBoobs = 0>>
 <</if>>
 <</if>>
 <<if $args[0].vagina > 0>>