From 6553e44b18356d91750c782b23d8af248dcc449c Mon Sep 17 00:00:00 2001 From: Anu <barrychahal@gmail.com> Date: Tue, 6 Jul 2021 10:05:08 +0000 Subject: [PATCH] Fix reversed rapid-gestation option text --- src/facilities/clinic/clinic.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/facilities/clinic/clinic.js b/src/facilities/clinic/clinic.js index 5e6dcb00e66..657def00943 100644 --- a/src/facilities/clinic/clinic.js +++ b/src/facilities/clinic/clinic.js @@ -187,12 +187,12 @@ App.Facilities.Clinic.clinic = class extends App.Facilities.Facility { ], options: [ { - get text() { return `It's exceedingly dangerous to speed up gestation without constant supervision. In ${V.clinicName}, ${S.Nurse.slaveName} will monitor slaves on rapid gestation agents; making sure the growing patients' food demands are met, monitoring their skin and womb and, if need be, perform an emergency c-section should the need arise.`; }, + get text() { return `${capFirstChar(V.clinicName)} is currently not applying rapid gestation agents to pregnant patients. Only individually selected slaves will undergo this procedure.`; }, link: `Limit rapid gestation agents to selected slaves only`, value: 0, }, { - get text() { return `${capFirstChar(V.clinicName)} is currently not applying rapid gestation agents to pregnant patients. Only individually selected slaves will undergo this procedure.`; }, + get text() { return `It's exceedingly dangerous to speed up gestation without constant supervision. In ${V.clinicName}, ${S.Nurse.slaveName} will monitor slaves on rapid gestation agents; making sure the growing patients' food demands are met, monitoring their skin and womb and, if need be, perform an emergency c-section should the need arise.`; }, link: `Speed up gestation for all pregnant patients`, value: 1, } -- GitLab