From 4fd84f70af1a362262121e1348ace87fc25208cb Mon Sep 17 00:00:00 2001 From: Skriv <skrivelese@gmail.com> Date: Thu, 11 Jun 2020 20:59:30 +0200 Subject: [PATCH] fix --- src/npc/descriptions/sceneIntro.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/npc/descriptions/sceneIntro.js b/src/npc/descriptions/sceneIntro.js index 2658cd9f3f6..290d6fa24ac 100644 --- a/src/npc/descriptions/sceneIntro.js +++ b/src/npc/descriptions/sceneIntro.js @@ -5,7 +5,7 @@ App.Desc.sceneIntro = function(slave) { const r = []; const { - he, him, his, He, His, himself + he, him, his, He, His, himself, wife } = getPronouns(slave); if (V.eventDescription === 1) { @@ -13,7 +13,7 @@ App.Desc.sceneIntro = function(slave) { if (slave.assignment === "be a subordinate slave") { let lsd = V.slaveIndices[slave.subTarget]; if (lsd) { - r.push(`${He} has been ordered to serve <span class="slave-name-simple">${SlaveFullName(V.slaves[_lsd])}</span> specifically.`); + r.push(`${He} has been ordered to serve <span class="slave-name-simple">${SlaveFullName(V.slaves[lsd])}</span> specifically.`); } } } else if (V.ui !== "start" && V.saleDescription !== 1) { @@ -242,7 +242,7 @@ App.Desc.sceneIntro = function(slave) { } r.push(`their passionate relationship.`); } else if (V.slaves[lsd].relationship > 4) { - r.push(`<span style="font-weight:bold" class="relationship">${SlaveFullName(V.slaves[lsd])}'s slave ${V.wife};</span> the rules`); + r.push(`<span style="font-weight:bold" class="relationship">${SlaveFullName(V.slaves[lsd])}'s slave ${wife};</span> the rules`); if (slave.rules.relationship === "permissive") { r.push(`encourage`); } else { @@ -282,7 +282,7 @@ App.Desc.sceneIntro = function(slave) { } else if (slave.relationship >= 4) { r.push(`${He} has ${his} own room, which ${he} shares with ${his}`); if (slave.relationship === 5) { - r.push(getPronouns(slave).wife); + r.push(wife); } else { r.push(`${getPronouns(slave).girl}friend`); } -- GitLab