From cae38a593bf58591a33dc04dfb0c656dbafa3aa1 Mon Sep 17 00:00:00 2001 From: DCoded <dicoded@email.com> Date: Fri, 20 Aug 2021 10:32:16 -0400 Subject: [PATCH] Partners text polish --- src/player/managePersonalAffairs.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/player/managePersonalAffairs.js b/src/player/managePersonalAffairs.js index 02ac4d16558..22e2e5833dc 100644 --- a/src/player/managePersonalAffairs.js +++ b/src/player/managePersonalAffairs.js @@ -671,7 +671,11 @@ App.UI.managePersonalAffairs = function() { const slaves = [...PC.partners].filter(i => i > 0); const other = []; - text.push(`You've had sex with ${num(slaves.length)} different slaves so far.`); + if (slaves.length > 0) { + text.push(`You've had sex with ${num(slaves.length)} ${slaves.length > 1 ? `different slaves` : `slave`} so far.`); + } else { + text.push(`You haven't had sex with any slaves yet.`); + } if (PC.partners.has(-2)) { other.push(`citizens of ${V.arcologies[0].name}`); @@ -693,7 +697,7 @@ App.UI.managePersonalAffairs = function() { } if (other.length > 0) { - text.push(`You have also had sex with ${toSentence(other)}.`); + text.push(`You have ${slaves.length > 0 ? `also` : ``} had sex with ${toSentence(other)}${slaves.length > 0 ? `` : `, though`}.`); } App.Events.addNode(partnersDiv, text); -- GitLab