Skip to content
Snippets Groups Projects
Commit 489b205e authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fixes

parent 755bb8b0
No related branches found
No related tags found
1 merge request!5275Nursery undef fix
...@@ -2055,17 +2055,21 @@ App.Facilities.Nursery.LongInfantDescription = function(child) { ...@@ -2055,17 +2055,21 @@ App.Facilities.Nursery.LongInfantDescription = function(child) {
if (child.father !== 0) { if (child.father !== 0) {
if (V.showMissingSlaves && child.father in V.missingTable) { if (V.showMissingSlaves && child.father in V.missingTable) {
pName = `your former slave ${V.missingTable[child.father].slaveName}`; pName = `your former slave ${V.missingTable[child.father].slaveName}`;
} else { } else if (child.father in V.slaveIndices) {
pName = V.slaves[V.slaveIndices[child.father]].slaveName; pName = V.slaves[V.slaveIndices[child.father]].slaveName;
} }
r += `${He} was <span class="lightgreen">fathered by ${pName}'s</span> virile dick. `; if (pName) {
r += `${He} was <span class="lightgreen">fathered by ${pName}'s</span> virile dick. `;
}
} else if (child.mother !== 0) { } else if (child.mother !== 0) {
if (V.showMissingSlaves && child.mother in V.missingTable) { if (V.showMissingSlaves && child.mother in V.missingTable) {
pName = `your former slave ${V.missingTable[child.mother].slaveName}`; pName = `your former slave ${V.missingTable[child.mother].slaveName}`;
} else { } else if (child.mother in V.slaveIndices){
pName = V.slaves[V.slaveIndices[child.mother]].slaveName; pName = V.slaves[V.slaveIndices[child.mother]].slaveName;
} }
r += `${He} was born from ${pName}'s fertile womb. `; if (pName) {
r += `${He} was born from ${pName}'s fertile womb. `;
}
} }
} }
} }
...@@ -2398,7 +2402,7 @@ App.Facilities.Nursery.LongInfantDescription = function(child) { ...@@ -2398,7 +2402,7 @@ App.Facilities.Nursery.LongInfantDescription = function(child) {
   
/* CLOSE FAMILY */ /* CLOSE FAMILY */
   
if (father && father === PC) { if (father && fatherPC) {
if (child.eyeColor === PC.eyeColor) { if (child.eyeColor === PC.eyeColor) {
r += `${He} has your ${child.eyeColor} eyes, `; r += `${He} has your ${child.eyeColor} eyes, `;
} else if (mother) { } else if (mother) {
...@@ -2409,6 +2413,8 @@ App.Facilities.Nursery.LongInfantDescription = function(child) { ...@@ -2409,6 +2413,8 @@ App.Facilities.Nursery.LongInfantDescription = function(child) {
r += `${He} has ${his} father ${father.slaveName}'s ${child.eyeColor} eyes, `; r += `${He} has ${his} father ${father.slaveName}'s ${child.eyeColor} eyes, `;
} else if (mother) { } else if (mother) {
r += `${He} has ${his} mother ${mother.slaveName}'s ${child.eyeColor} eyes, `; r += `${He} has ${his} mother ${mother.slaveName}'s ${child.eyeColor} eyes, `;
} else {
r += `${He} has ${child.eyeColor} eyes, `;
} }
} }
r += ` and ${he} will most likely have ${child.hColor} hair when ${he}'s older. `; r += ` and ${he} will most likely have ${child.hColor} hair when ${he}'s older. `;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment