Skip to content
Snippets Groups Projects
Commit 755bb8b0 authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fix

parent f63e8de2
No related branches found
No related tags found
No related merge requests found
...@@ -2043,7 +2043,7 @@ App.Facilities.Nursery.LongInfantDescription = function(child) { ...@@ -2043,7 +2043,7 @@ App.Facilities.Nursery.LongInfantDescription = function(child) {
   
if (fatherPC && motherPC) { if (fatherPC && motherPC) {
r += `${He} is <span class="lightgreen">your child;</span> you knocked yourself up with ${him}. `; r += `${He} is <span class="lightgreen">your child;</span> you knocked yourself up with ${him}. `;
} else if (father.ID === mother.ID) { } else if (child.father === child.mother) {
r += `${He} was <span class="lightgreen">both fathered and mothered by ${father.slaveName}.</span> `; r += `${He} was <span class="lightgreen">both fathered and mothered by ${father.slaveName}.</span> `;
} else { } else {
if (fatherPC) { if (fatherPC) {
...@@ -2052,18 +2052,18 @@ App.Facilities.Nursery.LongInfantDescription = function(child) { ...@@ -2052,18 +2052,18 @@ App.Facilities.Nursery.LongInfantDescription = function(child) {
r += `${He} is <span class="lightgreen">your child;</span> you gave birth to ${him}. `; r += `${He} is <span class="lightgreen">your child;</span> you gave birth to ${him}. `;
} else { } else {
let pName; let pName;
if (child.father > 0) { if (child.father !== 0) {
if (child.father in V.missingTable && V.showMissingSlaves) { if (V.showMissingSlaves && child.father in V.missingTable) {
pName = V.slaves[V.slaveIndices[child.father]].slaveName;
} else {
pName = `your former slave ${V.missingTable[child.father].slaveName}`; pName = `your former slave ${V.missingTable[child.father].slaveName}`;
} else {
pName = V.slaves[V.slaveIndices[child.father]].slaveName;
} }
r += `${He} was <span class="lightgreen">fathered by ${pName}'s</span> virile dick. `; r += `${He} was <span class="lightgreen">fathered by ${pName}'s</span> virile dick. `;
} else if (child.mother > 0) { } else if (child.mother !== 0) {
if (child.mother in V.missingTable && V.showMissingSlaves) { if (V.showMissingSlaves && child.mother in V.missingTable) {
pName = V.slaves[V.slaveIndices[child.mother]].slaveName;
} else {
pName = `your former slave ${V.missingTable[child.mother].slaveName}`; pName = `your former slave ${V.missingTable[child.mother].slaveName}`;
} else {
pName = V.slaves[V.slaveIndices[child.mother]].slaveName;
} }
r += `${He} was born from ${pName}'s fertile womb. `; r += `${He} was born from ${pName}'s fertile womb. `;
} }
......
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