From b26f013ce2d401021ae51569d216db64d5043a0b Mon Sep 17 00:00:00 2001 From: Anu <anulithic@gmail.com> Date: Wed, 14 Dec 2022 16:28:17 -0800 Subject: [PATCH] Revert "Respect singletons in overdue text" This reverts commit e46363c836965586a2e7337550d48378ce7541ff. --- src/endWeek/player/prPregnancy.js | 8 ++------ src/endWeek/saPregnancy.js | 8 ++------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/src/endWeek/player/prPregnancy.js b/src/endWeek/player/prPregnancy.js index 9b6ca9b912a..eceaf20e706 100644 --- a/src/endWeek/player/prPregnancy.js +++ b/src/endWeek/player/prPregnancy.js @@ -238,11 +238,7 @@ App.EndWeek.Player.pregnancy = function(PC = V.PC) { } else { r.push(`${child}.`); } - if (PC.pregType > 1) { - r.push(`They're overdue, so your water could break at any moment, but for now they aren't quite ready to leave their home.`); - } else { - r.push(`You're overdue, so your water could break at any moment, but for now your child isn't quite ready to leave the womb.`); - } + r.push(`They're overdue, so your water could break at any moment, but for now they aren't quite ready to leave their home.`); } else if (PC.preg > PC.pregData.normalBirth - 1 && PC.preg > PC.pregData.minLiveBirth) { r.push(`You are constantly beset by your squirming`); if (PC.geneticQuirks.uterineHypersensitivity === 2) { @@ -250,7 +246,7 @@ App.EndWeek.Player.pregnancy = function(PC = V.PC) { } else { r.push(`${child}.`); } - r.push(`Given ${PC.pregType > 1 ? `their` : `your occupant's`} liveliness, and how far along you are, it is likely that you will go into labor at any time now.`); + r.push(`Given their liveliness, and how far along you are, it is likely that you will go into labor at any time now.`); } else if (PC.preg > PC.pregData.normalBirth - 2 && PC.preg > PC.pregData.minLiveBirth) { r.push(`You often have to pause and soothe your kicking`); if (PC.geneticQuirks.uterineHypersensitivity === 2) { diff --git a/src/endWeek/saPregnancy.js b/src/endWeek/saPregnancy.js index 1c3fd6be7be..ef80741b563 100644 --- a/src/endWeek/saPregnancy.js +++ b/src/endWeek/saPregnancy.js @@ -499,11 +499,7 @@ App.SlaveAssignment.pregnancy = function saPregnancy(slave) { } else { r.push(`${child}.`); } - if (slave.pregType > 1) { - r.push(`They're overdue, so ${he}'s likely to go into labor at any moment, but they aren't quite ready to leave their home.`); - } else { - r.push(`${He}'s overdue, so ${he}'s likely to go into labor at any moment, but ${his} child isn't quite ready to leave the womb.`); - } + r.push(`They're overdue, so ${he}'s likely to go into labor at any moment, but they aren't quite ready to leave their home.`); } else if (slave.preg > slave.pregData.normalBirth - 1 && slave.preg > slave.pregData.minLiveBirth) { r.push(`${He} is constantly beset by ${his} squirming`); if (slave.geneticQuirks.uterineHypersensitivity === 2) { @@ -511,7 +507,7 @@ App.SlaveAssignment.pregnancy = function saPregnancy(slave) { } else { r.push(`${child}.`); } - r.push(`Given ${slave.pregType > 1 ? `their` : `${his} occupant's`} liveliness, and how long ${he} has been pregnant, it is likely that ${he} will go into labor at any time now.`); + r.push(`Given their liveliness, and how long ${he} has been pregnant, it is likely that ${he} will go into labor at any time now.`); } else if (slave.preg > slave.pregData.normalBirth - 2 && slave.preg > slave.pregData.minLiveBirth) { r.push(`${He} often has to stop for breaks to soothe ${his} kicking`); if (slave.geneticQuirks.uterineHypersensitivity === 2) { -- GitLab