diff --git a/src/facilities/nursery/nurseryRetrievalWorkaround.tw b/src/facilities/nursery/nurseryRetrievalWorkaround.tw
index 56cf180119c836dbee84bb96fa5b5ad0c96a6f59..ac7aab8cef8ad8697171561621f8a7fe2694d107 100644
--- a/src/facilities/nursery/nurseryRetrievalWorkaround.tw
+++ b/src/facilities/nursery/nurseryRetrievalWorkaround.tw
@@ -9,7 +9,6 @@ $readySlave.slaveName has been discharged from $nurseryName and is ready to beco
 <<set $nurseryBabies-->>
 <<include "Long Slave Description">>
 <<run newSlave($activeSlave)>>
-<<set $slaves.push($activeSlave)>>
 <<set $nextLink = "AS Dump">>
 <<set $returnTo = "Main">>
 /*
@@ -27,4 +26,4 @@ $readySlave.slaveName has been discharged from $nurseryName and is ready to beco
 	<</for>>
 <</if>>
 */
-/*<<include "New Child Nursery">>*/
\ No newline at end of file
+/*<<include "New Child Nursery">>*/
diff --git a/src/facilities/nursery/widgets/utils/nurseryUtils.js b/src/facilities/nursery/widgets/utils/nurseryUtils.js
index b1be056d5074a80c98990f96f6131297bd847dd2..2d0c5df4ebb2196249bbacfb0b38403b1383c974 100644
--- a/src/facilities/nursery/widgets/utils/nurseryUtils.js
+++ b/src/facilities/nursery/widgets/utils/nurseryUtils.js
@@ -183,6 +183,7 @@ App.Facilities.Nursery.infantToChild = function infantToChild(child) {
 	child.fetishKnown = 0;
 	child.fetishStrength = 0;
 	child.foreskin = 0;
+	child.fuckdoll = 0;
 	child.geneMods = {
 		NCS: 0,
 		rapidCellGrowth: 0
@@ -309,7 +310,7 @@ App.Facilities.Nursery.infantToChild = function infantToChild(child) {
 	child.rivalry = 0;
 	child.rivalryTarget = 0;
 	child.rudeTitle = 0;
-	child.scars = 0;
+	child.scar = {};
 	child.scrotum = 0;
 	child.shoes = "none";
 	child.shoulders = 0;
@@ -625,6 +626,8 @@ App.Facilities.Nursery.nameChild = function nameChild(child) {
  * @param {App.Entity.InfantState} child
  */
 App.Facilities.Nursery.newChild = function newChild(child) {
+	const He = child.genes === "XX" ? `She` : `He`;
+
 	child.ID = generateSlaveID();
 
 	child.actualAge = 0;
@@ -676,7 +679,7 @@ App.Facilities.Nursery.newChild = function newChild(child) {
 		child.canRecruit = 0;
 	}
 	generatePronouns(child);
-	child.origin = `$He was born and raised in your arcology. `;
+	child.origin = `${He} was born and raised in your arcology. `;
 	child.targetLocation = "slavery";
 	child.growTime = V.targetAgeNursery * 52;
 	V.cribs.push(child);