From 1da617c2eb4b021693a5f2b3ff765fa786b6ee11 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sun, 8 Nov 2020 06:12:00 -0500 Subject: [PATCH] more fixes --- src/npc/descriptions/face.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/npc/descriptions/face.js b/src/npc/descriptions/face.js index eb3c7d6aaf6..d363083d9ce 100644 --- a/src/npc/descriptions/face.js +++ b/src/npc/descriptions/face.js @@ -154,13 +154,13 @@ App.Desc.face = function(slave) { if (slave.faceImplant > 5) { r.push(`${He}'s`); if (slave.faceImplant > 95) { - r.push(`had so much cosmetic surgery that ${his} face is located at the bottom of the uncanny valley`); + r.push(`had so much cosmetic surgery that ${his} face is located at the bottom of the uncanny`); if (slave.face < -10) { - r.push(`in addition to its ugliness.`); + r.push(`valley in addition to its ugliness.`); } else if (slave.face <= 10) { - r.push(`the only thing really distinctive about it.`); + r.push(`valley; the only thing really distinctive about it.`); } else { - r.push(`its attractiveness notwithstanding.`); + r.push(`valley, its attractiveness notwithstanding.`); } } else if (slave.faceImplant > 60) { r.push(`obviously gotten a lot of facial cosmetic surgery.`); -- GitLab