From 0692dc0b93a852a545a052639fd6d6e038ea41f3 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Tue, 15 Dec 2020 11:05:21 -0500 Subject: [PATCH] add none --- src/npc/startingGirls/editFamily.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/npc/startingGirls/editFamily.js b/src/npc/startingGirls/editFamily.js index 74908a70430..8a8c0f14543 100644 --- a/src/npc/startingGirls/editFamily.js +++ b/src/npc/startingGirls/editFamily.js @@ -264,7 +264,7 @@ App.Intro.editFamily = function(slave) { div.append(`${slave.slaveName} is the mother of these children: `); const nameEl = makeElWithID("motheredNames", "span"); - nameEl.append(App.StartingGirls.listOfSlavesWithParent("mother", slave.ID), " "); + nameEl.append(App.StartingGirls.listOfSlavesWithParent("mother", slave.ID) || "None.", " "); div.append(nameEl); linkArray.push( @@ -331,7 +331,7 @@ App.Intro.editFamily = function(slave) { div.append(`${slave.slaveName} is the father of these children: `); const nameEl = makeElWithID("fatheredNames", "span"); - nameEl.append(App.StartingGirls.listOfSlavesWithParent("father", slave.ID), " "); + nameEl.append(App.StartingGirls.listOfSlavesWithParent("father", slave.ID) || "None.", " "); div.append(nameEl); linkArray.push( -- GitLab