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
Container Registry
Model registry
Operate
Environments
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
pregmodfan
fc-pregmod
Commits
cddb36a9
Commit
cddb36a9
authored
1 year ago
by
svornost
Browse files
Options
Downloads
Patches
Plain Diff
Fix baby destination selection for mindbroken/fuckdoll slaves.
parent
93ac713d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!11653
Fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/js/birth/birth.js
+5
-5
5 additions, 5 deletions
src/js/birth/birth.js
with
5 additions
and
5 deletions
src/js/birth/birth.js
+
5
−
5
View file @
cddb36a9
...
...
@@ -1463,7 +1463,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false, artRen
slave.devotion += 3;
}
}
if (humiliation === 1
&& slave.fuckdoll === 0
) {
if (humiliation === 1) {
App.Events.addParagraph(el, r);
r = [];
r.push(`Giving birth in such a manner was completely humiliating,`);
...
...
@@ -1597,7 +1597,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false, artRen
App.Events.addParagraph(el, r);
}
/* ------------------------ Fate of other babies ---------------------------------------*/
if (
slave.fetish !== Fetish.MINDBROKEN && slave.fuckdoll === 0 &&
numBeingBorn > 0) {
if (numBeingBorn > 0) {
r = [];
choices = document.createElement("p");
choices.id = dispositionId;
...
...
@@ -1621,7 +1621,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false, artRen
r.push(`Unless you provide otherwise, the ${children} will be remanded to one of ${V.arcologies[0].name}'s slave orphanages.`);
V.slaveOrphanageTotal += numBeingBorn; // Player may choose nothing. Assume that now, and reverse it later if needed.
if (!slaveDead) {
if (slave.fuckdoll > 0) {
if (
slave.fetish === Fetish.MINDBROKEN ||
slave.fuckdoll > 0) {
r.push(`${slave.slaveName} shows no indication of an opinion on the matter.`);
} else if (slave.devotion > 95) {
r.push(`${slave.slaveName} worships you so completely that ${he} will not resent this.`);
...
...
@@ -1737,7 +1737,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false, artRen
r.push(`${slave.slaveName}'s ${childrenWere} sent to one of ${V.arcologies[0].name}'s slave orphanages.`);
r.push(`${slave.slaveName}`);
if (!slaveDead) {
if (slave.fuckdoll > 0) {
if (
slave.fetish === Fetish.MINDBROKEN ||
slave.fuckdoll > 0) {
r.push(`shows no indication of an opinion on the matter.`);
} else if (slave.devotion > 95) {
r.push(`worships you so completely that ${he} will not resent this.`);
...
...
@@ -1761,7 +1761,7 @@ globalThis.birth = function(slave, {birthStorm = false, cSection = false, artRen
r.push(`${slave.slaveName}'s ${childrenWere} sent to a citizen school.`);
r.push(`${slave.slaveName}`);
if (!slaveDead) {
if (slave.fuckdoll > 0) {
if (
slave.fetish === Fetish.MINDBROKEN ||
slave.fuckdoll > 0) {
r.push(`fails to acknowledge this.`);
} else if (slave.devotion > 95) {
r.push(`loves you already, but ${he}'ll`);
...
...
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