diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js
index 855345accdb4b7b9334443f1c755e8dcd339f3c2..49674421e03534c0f342419a8efe226c16767b06 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) {