diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index be4ee44f70ddb89d7d3941a830d2015cec72efe2..11ad70b5d3fc6830460b250d744556b2d7a77b3c 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -13894,11 +13894,12 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) {
 	};
 	var node_lookup = {};
 	var preset_lookup = {
-		'-2': 'Social elite',
-		'-3': 'Client',
-		'-4': 'Former master',
-		'-5': 'An arcology owner',
-		'-6': 'A citizen'
+		'-2': 'A citizen',
+		'-3': 'Former master',
+		'-4': 'An arcology owner',
+		'-5': 'Client',
+		'-6': 'Social elite',
+		'-7': 'Gene lab'
 	};
 	var outdads = {};
 	var outmoms = {};
@@ -21980,12 +21981,14 @@ window.SlaveSummaryUncached = (function(){
 			else
 				short_legacy_family(slave);
 			r += `</span>`;
+			short_clone(slave);
 			short_rival(slave);
 		} else if (V.abbreviateMental === 2) {
 			if (V.familyTesting === 1)
 				long_extended_family(slave);
 			else
 				long_legacy_family(slave);
+			long_clone(slave);
 			long_rival(slave);
 		}
 		if (slave.fuckdoll === 0) {
@@ -25596,6 +25599,12 @@ window.SlaveSummaryUncached = (function(){
 		}
 	}
 
+	function short_clone(slave) {
+		if (slave.clone != 0) {
+			r += ` Clone`;
+		}
+	}
+
 	function short_rival(slave) {
 		if (slave.rivalry !== 0) {
 			r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
@@ -25785,6 +25794,12 @@ window.SlaveSummaryUncached = (function(){
 		}
 	}
 
+	function long_clone(slave) {
+		if (slave.clone != 0) {
+			r += ` <span class="skyblue">Clone of ${slave.clone}.</span>`;
+		}
+	}
+
 	function long_rival(slave) {
 		if (slave.rivalry !== 0) {
 			r += `&nbsp;&nbsp;&nbsp;&nbsp;`;
diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index 5f3763de0cbf4126624f4d8aec9011338480d3cc..d28a43160fcd8f0365161c610f3bbb0421f9be51 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -389,6 +389,27 @@ You should have received a copy of the GNU General Public License along with thi
 		<<initPC>>
 		<<set $cheater = 0>>
 		<<set $cash = 10000>>
+		<<for _i = 0; _i < _SL; _i++>>
+			<<if $familyTesting == 1>>
+				<<if $slaves[_i].mother == -1>>
+					<<set $slaves[_i].mother = $missingParentID+1200000>>
+				<</if>>
+				<<if $slaves[_i].father == -1>>
+					<<set $slaves[_i].father = $missingParentID+1200000>>
+				<</if>>
+				<<if $slaves[_i].pregSource == -1>>
+					<<set $slaves[_i].pregSource = 0>>
+				<</if>>
+				<<if $slaves[_i].cloneID == -1>>
+					<<set $slaves[_i].cloneID = 0>>
+				<</if>>
+			<</if>>
+			<<for _sInit = 0; _sInit < $slaves[_i].womb.length; _sInit++>>
+				<<if $slaves[_i].womb[_sInit].fatherID == -1>>
+					<<set $slaves[_i].womb[_sInit].fatherID = 0>>
+				<</if>>
+			<</for>>
+		<</for>>
 	<</if>>
 
 <</if>>
diff --git a/src/js/familyTree.tw b/src/js/familyTree.tw
index 478a320cdb1036563a6c6c17a028a50abb4e04da..820a2ad338b8caa0f4e1764994e9edf838822a5a 100644
--- a/src/js/familyTree.tw
+++ b/src/js/familyTree.tw
@@ -213,11 +213,12 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) {
 	};
 	var node_lookup = {};
 	var preset_lookup = {
-		'-2': 'Social elite',
-		'-3': 'Client',
-		'-4': 'Former master',
-		'-5': 'An arcology owner',
-		'-6': 'A citizen'
+		'-2': 'A citizen',
+		'-3': 'Former master',
+		'-4': 'An arcology owner',
+		'-5': 'Client',
+		'-6': 'Social elite',
+		'-7': 'Gene lab'
 	};
 	var outdads = {};
 	var outmoms = {};
diff --git a/src/uncategorized/arcmgmt.tw b/src/uncategorized/arcmgmt.tw
index 9be88137dca0349aad544fd3e631c6cb9c90acb4..2e7665feb2eaf3b4efe061dac45a1c92cdf018e2 100644
--- a/src/uncategorized/arcmgmt.tw
+++ b/src/uncategorized/arcmgmt.tw
@@ -110,7 +110,7 @@ _topClassP = 1>>
 	_upperClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * -0.001,
 	_topClass += Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * -0.5,
 	_topClassP *= 1 + Math.trunc(Math.min($arcologies[0].FSBodyPurist, 100) / 20) * -0.001>>
-	Body purist fashion standards comfort the poor stand as they stand out less from their more fortunate neighbors.
+	Body purist fashion standards comfort the poor as they stand out less from their more fortunate neighbors.
 <</if>>
 <<if $arcologies[0].FSTransformationFetishist != "unset">>
 	<<set _FSScore += Math.min($arcologies[0].FSTransformationFetishist, 100),
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index b6a3f0da8b97108cc1ad2d88e3ce1d4148b59d83..d1b9a57cdef2be927df9d953bf81ba1999ba6636 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -1605,7 +1605,7 @@ Hormones: <strong><span id="hormones">
 
 	<<if setup.facilityHeads.includes($activeSlave.assignment)>>
 		<<if $activeSlave.lactation != 2>>
-			<br>Lactation maintenance for facility heads: ''<span id="releaseRules">$activeSlave.lactationRules</span>.''
+			<br>Lactation maintenance for facility heads: ''<span id="lactationRules">$activeSlave.lactationRules</span>.''
 			<<link "Left alone">><<set $activeSlave.lactationRules = "none">><<replace "#lactationRules">>$activeSlave.lactationRules<</replace>><</link>> |
 			<<if $activeSlave.lactation == 0>>
 				<<link "Induce lactation">><<set $activeSlave.lactationRules = "induce">><<replace "#lactationRules">>$activeSlave.lactationRules<</replace>><</link>>