From 970b37fb6ad84422a4093460b3d11355bc0f232f Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Mon, 23 Aug 2021 02:38:02 -0700 Subject: [PATCH] Fix inverted brothel settings --- src/facilities/brothel/brothel.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/facilities/brothel/brothel.js b/src/facilities/brothel/brothel.js index a3b9dd0aec9..968aef7d262 100644 --- a/src/facilities/brothel/brothel.js +++ b/src/facilities/brothel/brothel.js @@ -206,17 +206,17 @@ App.Facilities.Brothel.brothel = class Brothel extends App.Facilities.Facility { { get text() { const {him} = getPronouns(S.Madam); - return `${S.Madam.slaveName} has been instructed to ignore flaws in the whores serving under ${him}.`; + return `${S.Madam.slaveName} will attempt to fix flaws in whores serving under ${him}.`; }, - link: `Ignore flaws`, + link: `Fix flaws`, value: 0, }, { get text() { const {him} = getPronouns(S.Madam); - return `${S.Madam.slaveName} will attempt to fix flaws in whores serving under ${him}.`; + return `${S.Madam.slaveName} has been instructed to ignore flaws in the whores serving under ${him}.`; }, - link: `Fix flaws`, + link: `Ignore flaws`, value: 1, }, ], @@ -229,18 +229,18 @@ App.Facilities.Brothel.brothel = class Brothel extends App.Facilities.Facility { options: [ { get text() { - const {he, himself} = getPronouns(S.Madam); - return `${S.Madam.slaveName} will not whore ${himself} out even if ${he} has time.`; + const {he, him, himself} = getPronouns(S.Madam); + return `${S.Madam.slaveName} will whore ${himself} out when ${he} doesn't have enough whores serving under ${him}.`; }, - link: `Don't serve clients`, + link: `Serve clients`, value: 0, }, { get text() { - const {he, him, himself} = getPronouns(S.Madam); - return `${S.Madam.slaveName} will whore ${himself} out when ${he} doesn't have enough whores serving under ${him}.`; + const {he, himself} = getPronouns(S.Madam); + return `${S.Madam.slaveName} will not whore ${himself} out even if ${he} has time.`; }, - link: `Serve clients`, + link: `Don't serve clients`, value: 1, }, ], -- GitLab