Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fc-pregmod
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
macaronideath
fc-pregmod
Commits
755bb8b0
Commit
755bb8b0
authored
5 years ago
by
lowercasedonkey
Browse files
Options
Downloads
Patches
Plain Diff
fix
parent
f63e8de2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/facilities/nursery/nurseryWidgets.js
+9
-9
9 additions, 9 deletions
src/facilities/nursery/nurseryWidgets.js
with
9 additions
and
9 deletions
src/facilities/nursery/nurseryWidgets.js
+
9
−
9
View file @
755bb8b0
...
@@ -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. `;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment