From 66fb90ba79460b63a68d76186030822c2c09548d Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sun, 27 Feb 2022 19:52:53 -0500 Subject: [PATCH] Tweak eye into mindbroken description --- src/npc/descriptions/descriptionWidgets.js | 4 ++-- src/npc/descriptions/mind.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/npc/descriptions/descriptionWidgets.js b/src/npc/descriptions/descriptionWidgets.js index 232a6f39e6c..17185ae046a 100644 --- a/src/npc/descriptions/descriptionWidgets.js +++ b/src/npc/descriptions/descriptionWidgets.js @@ -96,7 +96,7 @@ App.Desc.eyes = function(slave, descType = DescType.NORMAL) { } r += `, `; if (slave.fetish === "mindbroken") { - r += `fitting for vacant expression constantly adorning ${his} face; ${his} broken mind lacks the ability to form higher thought and is completely reliant on others to think for ${him}.`; + r += `fitting for vacant expression constantly adorning ${his} face; ${he} lacks the ability to form higher thought and is completely reliant on others to think for ${him}.`; } else if (slave.intelligence > 95) { r += `but ${his} facial expressions reveal ${he} is incisive, quick, cunning; `; if (slave.intelligence + slave.intelligenceImplant >= 130) { @@ -224,7 +224,7 @@ App.Desc.eyes = function(slave, descType = DescType.NORMAL) { } } else { if (slave.fetish === "mindbroken") { - r += `${His} ${App.Desc.eyesColor(slave, "", "eye", "eyes", false)} ${hasBothEyes(slave) ? "are" : "is"} dull and vacant; ${his} broken mind lacks the capacity for higher thought.`; + r += `${His} ${App.Desc.eyesColor(slave, "", "eye", "eyes", false)} ${hasBothEyes(slave) ? "are" : "is"} dull and vacant; ${he} lacks the capacity for higher thought.`; } else if (slave.intelligence > 95) { r += `${His} ${App.Desc.eyeColor(slave)}-eyed gaze is incisive, quick, cunning; `; if (slave.intelligence + slave.intelligenceImplant >= 130) { diff --git a/src/npc/descriptions/mind.js b/src/npc/descriptions/mind.js index 0fc895f059e..252527390e0 100644 --- a/src/npc/descriptions/mind.js +++ b/src/npc/descriptions/mind.js @@ -12,7 +12,7 @@ App.Desc.mind = function(slave, descType) { r.push(App.Desc.eyes(slave, descType)); if (slave.fetish === "mindbroken") { - r.push(`However, <span class="coral">${his} mind is fundamentally broken;</span> everything ${he} experiences will quickly be forgotten.`); + r.push(`<span class="coral">${His} mind is fundamentally broken;</span> everything ${he} experiences will quickly be forgotten.`); } else { r.push(behavioralFlaws()); r.push(behavioralQuirks()); -- GitLab