From ee742fba4f28129643051b47ef024ea08dacee05 Mon Sep 17 00:00:00 2001 From: Empress Sela <empresssela@cock.li> Date: Fri, 31 Jul 2020 20:56:39 -0400 Subject: [PATCH] Use extended missing table attributes in family tree --- src/js/familyTreeJS.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/js/familyTreeJS.js b/src/js/familyTreeJS.js index f451441c52d..9447ac74d54 100644 --- a/src/js/familyTreeJS.js +++ b/src/js/familyTreeJS.js @@ -274,8 +274,8 @@ globalThis.buildFamilyTree = function(slaves, filterID) { let missing = V.missingTable[mom]; charList.push({ ID: mom, - mother: 0, - father: 0, + mother: missing.mother, + father: missing.father, is_mother: true, dick: missing.dick, vagina: missing.vagina, @@ -309,8 +309,8 @@ globalThis.buildFamilyTree = function(slaves, filterID) { let missing = V.missingTable[dad]; charList.push({ ID: dad, - mother: 0, - father: 0, + mother: missing.mother, + father: missing.father, is_father: true, dick: missing.dick, vagina: missing.vagina, -- GitLab