diff --git a/src/js/extendedFamilyModeJS.js b/src/js/extendedFamilyModeJS.js
index e893316657e7f4221e29f4172d3a012afedc76f8..11930ccaa147092c2ebd2b84dd70fb98d1bc3ee8 100644
--- a/src/js/extendedFamilyModeJS.js
+++ b/src/js/extendedFamilyModeJS.js
@@ -497,14 +497,12 @@ window.resetFamilyCounters = function() {
 window.setMissingParents = function(slave) {
 	function untraceableParentID(ID) { return ID === 0 || (ID < -1 && ID >= -20 && ID !== -3); }
 
-	if (V.familyTesting === 1) {
-		if (untraceableParentID(slave.mother)) {
-			slave.mother = V.missingParentID;
-			V.missingParentID--;
-		}
-		if (untraceableParentID(slave.father)) {
-			slave.father = V.missingParentID;
-			V.missingParentID--;
-		}
+	if (untraceableParentID(slave.mother)) {
+		slave.mother = V.missingParentID;
+		V.missingParentID--;
+	}
+	if (untraceableParentID(slave.father)) {
+		slave.father = V.missingParentID;
+		V.missingParentID--;
 	}
 };
diff --git a/src/js/generateRelatedSlave.js b/src/js/generateRelatedSlave.js
index be51bc64bfbb55f72111fc27c1dd4e14288742d0..e29472e48c2787dc3b8ce9172f7625f04d2dc787 100644
--- a/src/js/generateRelatedSlave.js
+++ b/src/js/generateRelatedSlave.js
@@ -108,11 +108,6 @@ window.generateRelatedSlave = (function() {
 	 * @param {App.Entity.SlaveState} slave - the new sibling
 	 */
 	function makeOlderSibling(slave) {
-		if (!V.familyTesting) {
-			slave.relation = "sister";
-			slave.relationTarget = sourceID;
-		}
-
 		// increase age
 		const maxDifference = (V.retirementAge - 1) - slave.actualAge;
 		const ageDifference = Math.min(random(2, 6), maxDifference);
@@ -167,13 +162,8 @@ window.generateRelatedSlave = (function() {
 	 * @param {App.Entity.SlaveState} slave - the new parent
 	 */
 	function makeParent(slave) {
-		if (!V.familyTesting) {
-			slave.relation = "mother"; // no fathers without family testing
-			slave.relationTarget = sourceID;
-		} else {
-			slave.mother = 0;
-			slave.father = 0;
-		}
+		slave.mother = 0;
+		slave.father = 0;
 
 		// select age
 		const childAge = slave.actualAge;
diff --git a/src/npc/startingGirls/commitStartingGirl.tw b/src/npc/startingGirls/commitStartingGirl.tw
index 122e48bb76e38a00e55f2ab071a27431d2fe1d07..107479cde5d21d9f3982eed2335b0b175d72672b 100644
--- a/src/npc/startingGirls/commitStartingGirl.tw
+++ b/src/npc/startingGirls/commitStartingGirl.tw
@@ -24,46 +24,33 @@
 		<<set $activeSlave = clone($activeSlave)>>
 		<<set $activeSlave.ID = generateSlaveID()>>
 		<<run nationalityToName($activeSlave), randomizeUnknowns($activeSlave)>>
-		<<if $familyTesting == 1>>
-			<<set $activeSlave.mother = 0, $activeSlave.father = 0>>
-		<<else>>
-			<<set $activeSlave.relation = 0, $activeSlave.relationTarget = 0>>
-		<</if>>
+		<<set $activeSlave.mother = 0, $activeSlave.father = 0>>
 		<<goto "Starting Girls">>
 	<</link>>
-	<<if ($familyTesting === 1) || ($activeSlave.relation === 0)>>
+	<<if $activeSlave.relation === 0>>
 		<<set _srcID = $activeSlave.ID>>
 		<br>
 		//Add another slave, related to the previous slave://
 		<div class="indent">
 		<<link "Twin">>
-			<<if $familyTesting == 1>>
-				<<run setMissingParents(getSlave(_srcID))>>
-			<</if>>
+			<<run setMissingParents(getSlave(_srcID))>>
 			<<set $activeSlave = generateRelatedSlave(getSlave(_srcID), "twin")>>
 			<<run randomizeUnknowns($activeSlave)>>
-			<<if $familyTesting != 1>>
-				<<set getSlave(_srcID).relation = "twin", getSlave(_srcID).relationTarget = $activeSlave.ID>>
-			<</if>>
 			<<goto "Starting Girls">>
 		<</link>>
 		</div>
 		<<if $activeSlave.actualAge + $minimumSlaveAge < $retirementAge - 1>>
-			<<if $seeDicks !== 100 && ($familyTesting === 0 || $activeSlave.mother === 0)>>
+			<<if $seeDicks !== 100 && $activeSlave.mother === 0>>
 				<div class="indent">
 				<<link "Mother">>
 					<<set $activeSlave = generateRelatedSlave(getSlave(_srcID), "parent", getSlave(_srcID).genes === "XY")>>
 					<<run randomizeUnknowns($activeSlave)>>
-					<<if $familyTesting === 1>>
-						<<set getSlave(_srcID).mother = $activeSlave.ID>>
-					<<else>>
-						<<set getSlave(_srcID).relation = "daughter", getSlave(_srcID).relationTarget = $activeSlave.ID>>
-					<</if>>
+					<<set getSlave(_srcID).mother = $activeSlave.ID>>
 					<<goto "Starting Girls">>
 				<</link>>
 				</div>
 			<</if>>
-			<<if $familyTesting === 1 && $seeDicks !== 0 && $activeSlave.father === 0>>
+			<<if $seeDicks !== 0 && $activeSlave.father === 0>>
 				<div class="indent">
 				<<link "Father">>
 					<<set $activeSlave = generateRelatedSlave(getSlave(_srcID), "parent", getSlave(_srcID).genes === "XX")>>
@@ -78,19 +65,14 @@
 			<<if $seeDicks !== 100>>
 				<div class="indent">
 				<<link "Older Sister">>
-					<<if $familyTesting == 1>>
-						<<run setMissingParents(getSlave(_srcID))>>
-					<</if>>
+					<<run setMissingParents(getSlave(_srcID))>>
 					<<set $activeSlave = generateRelatedSlave(getSlave(_srcID), "older sibling", getSlave(_srcID).genes === "XY")>>
 					<<run randomizeUnknowns($activeSlave)>>
-					<<if $familyTesting != 1>>
-						<<set getSlave(_srcID).relation = "sister", getSlave(_srcID).relationTarget = $activeSlave.ID>>
-					<</if>>
 					<<goto "Starting Girls">>
 				<</link>>
 				</div>
 			<</if>>
-			<<if $familyTesting === 1 && $seeDicks !== 0>>
+			<<if $seeDicks !== 0>>
 				<div class="indent">
 				<<link "Older Brother">>
 					<<run setMissingParents(getSlave(_srcID))>>
@@ -105,19 +87,14 @@
 			<<if $seeDicks !== 100>>
 				<div class="indent">
 				<<link "Younger Sister">>
-					<<if $familyTesting == 1>>
-						<<run setMissingParents(getSlave(_srcID))>>
-					<</if>>
+					<<run setMissingParents(getSlave(_srcID))>>
 					<<set $activeSlave = generateRelatedSlave(getSlave(_srcID), "younger sibling", getSlave(_srcID).genes === "XY")>>
 					<<run randomizeUnknowns($activeSlave)>>
-					<<if $familyTesting != 1>>
-						<<set getSlave(_srcID).relation = "sister", getSlave(_srcID).relationTarget = $activeSlave.ID>>
-					<</if>>
 					<<goto "Starting Girls">>
 				<</link>>
 				</div>
 			<</if>>
-			<<if $familyTesting === 1 && $seeDicks !== 0>>
+			<<if $seeDicks !== 0>>
 				<div class="indent">
 				<<link "Younger Brother">>
 					<<run setMissingParents(getSlave(_srcID))>>
@@ -134,14 +111,11 @@
 				<<link "Daughter">>
 					<<set $activeSlave = generateRelatedSlave(getSlave(_srcID), "child", getSlave(_srcID).genes === "XY")>>
 					<<run randomizeUnknowns($activeSlave)>>
-					<<if $familyTesting != 1>>
-						<<set getSlave(_srcID).relation = "mother", getSlave(_srcID).relationTarget = $activeSlave.ID>>
-					<</if>>
 					<<goto "Starting Girls">>
 				<</link>>
 				</div>
 			<</if>>
-			<<if $familyTesting === 1 && $seeDicks !== 0>>
+			<<if $seeDicks !== 0>>
 				<div class="indent">
 				<<link "Son">>
 					<<set $activeSlave = generateRelatedSlave(getSlave(_srcID), "child", getSlave(_srcID).genes === "XX")>>