From 675d90b1f8fa5a93c2d9f31725117c0ddf579604 Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Wed, 3 Mar 2021 20:14:35 -0800 Subject: [PATCH] use pronoun --- src/npc/startingGirls/startingGirls.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js index 7042d7ebd8d..ecfbbe7c8ff 100644 --- a/src/npc/startingGirls/startingGirls.js +++ b/src/npc/startingGirls/startingGirls.js @@ -1528,9 +1528,10 @@ App.StartingGirls.finalize = function(slave) { newSlave(clone(slave)); }; if (V.cash - cost > minimumSlaveCost()) { + const {him} = getPronouns(slave); App.UI.DOM.appendNewElement("div", el, App.UI.DOM.link( - "Add this slave, and use it as a template for the next slave", + `Add this slave, and use ${him} as a template for the next slave`, () => { addGirl(); slave.ID = generateSlaveID(); @@ -1545,7 +1546,7 @@ App.StartingGirls.finalize = function(slave) { ); App.UI.DOM.appendNewElement("div", el, App.UI.DOM.link( - "Add this slave, and randomize the next slave", + `Add this slave, and randomize the next slave`, () => { addGirl(); V.originOverride = 0; @@ -1558,7 +1559,7 @@ App.StartingGirls.finalize = function(slave) { } App.UI.DOM.appendNewElement("div", el, App.UI.DOM.link( - "Add this slave, and take control of the arcology", + `Add this slave, and take control of the arcology`, () => { addGirl(); }, -- GitLab