Skip to content
Snippets Groups Projects
Commit 46b71669 authored by brickode's avatar brickode
Browse files

Disabled troublesome block for now

parent 4336dccc
No related branches found
No related tags found
No related merge requests found
...@@ -935,29 +935,29 @@ App.Desc.pregnancy = function(slave, {market, eventDescription} = {}) { ...@@ -935,29 +935,29 @@ App.Desc.pregnancy = function(slave, {market, eventDescription} = {}) {
r.push(`${daddy}'s growing child.`); r.push(`${daddy}'s growing child.`);
} }
} }
} else if (slave.partners.size === 1) { // } else if (slave.partners.size === 1) {
let daddy = slave.partners.values().next().value; // let daddy = slave.partners.values().next().value;
if (daddy > 0) { // if (daddy > 0) {
if (daddy === slave.ID) { // if (daddy === slave.ID) {
daddy = himself; // daddy = himself;
} else { // } else {
daddy = getSlave(daddy).slaveName; // daddy = getSlave(daddy).slaveName;
} // }
} else { // } else {
let desc = { // let desc = {
1: `you`, // 1: `you`,
2: `one of the citizens of ${V.arcologies[0].name}`, // 2: `one of the citizens of ${V.arcologies[0].name}`,
3: `your former Master`, // 3: `your former Master`,
4: `the owner of another arcology`, // 4: `the owner of another arcology`,
6: `a member of the Societal Elite`, // 6: `a member of the Societal Elite`,
8: `one on your pets`, // 8: `one on your pets`,
9: `a Futanari Sister`, // 9: `a Futanari Sister`,
}; // };
daddy = desc[Math.abs(daddy)]; // daddy = desc[Math.abs(daddy)];
} // }
r.push(`${His} ${slave.pregType > 1 ? `children were` : `child was`} fathered by ${daddy}.`); // r.push(`${His} ${slave.pregType > 1 ? `children were` : `child was`} fathered by ${daddy}.`);
} else { } else {
r.push(`It is too early to tell who exactly fathered the child growing in ${his} womb.`); r.push(`It is too early to tell who exactly fathered the child growing in ${his} 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