diff --git a/src/facilities/brothel/brothel.js b/src/facilities/brothel/brothel.js index a3b9dd0aec9a6a57330c39d9b94294f7b8e3518a..968aef7d262110a076502a0b730854cc2ac4e857 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, }, ],