From f14744616e82f7d2c35e2bbca6abd7b293c57dde Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Wed, 1 Jan 2020 21:33:30 -0800 Subject: [PATCH] Use woman from pronoun class instead of deriving it independently --- src/js/descriptionWidgets.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js index 855345accdb..49674421e03 100644 --- a/src/js/descriptionWidgets.js +++ b/src/js/descriptionWidgets.js @@ -303,7 +303,6 @@ App.Desc.eyes = function(slave) { App.Desc.ageAndHealth = function(slave) { "use strict"; let r = ``; - let woman; /* eslint-disable no-unused-vars*/ let pronouns = getPronouns(slave); let he = pronouns.pronoun; @@ -312,6 +311,7 @@ App.Desc.ageAndHealth = function(slave) { let hers = pronouns.possessivePronoun; let himself = pronouns.objectReflexive; let boy = pronouns.noun; + let woman = pronouns.woman; let He = capFirstChar(he); let His = capFirstChar(his); /* eslint-enable */ @@ -325,8 +325,6 @@ App.Desc.ageAndHealth = function(slave) { } } - woman = (boy === "girl" ? "woman" : "man"); - if (!slave.fuckdoll) { const H = slave.health; if (H.health < -90) { -- GitLab