From 3dbf438bfdeccc12963b9b6a8deb3368bf757b79 Mon Sep 17 00:00:00 2001
From: DCoded <dsoloha@live.com>
Date: Wed, 5 Jun 2019 00:25:32 -0400
Subject: [PATCH] Removed clothing() and footwear(), minor fix

---
 src/js/descriptionWidgets.js | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js
index 61d807fe786..aa0e792c17e 100644
--- a/src/js/descriptionWidgets.js
+++ b/src/js/descriptionWidgets.js
@@ -272,14 +272,15 @@ App.Desc.ageAndHealth = function(slave) {
 	let woman;
 	/* eslint-disable no-unused-vars*/
 	let pronouns = getPronouns(slave);
-	let he = pronouns.pronoun;
-	let him = pronouns.object;
-	let his = pronouns.possessive;
-	let hers = pronouns.possessivePronoun;
-	let himself = pronouns.objectReflexive;
-	let boy = pronouns.noun;
-	let He = capFirstChar(he);
-	let His = capFirstChar(his);
+	let he = pronouns.he;
+	let him = pronouns.him;
+	let his = pronouns.his;
+	let hers = pronouns.hers;
+	let himself = pronouns.himself;
+	let boy = pronouns.boy;
+	let He = pronouns.He;
+	let His = pronouns.His;
+	let girl = pronouns.girl;
 	/* eslint-enable */
 	let age;
 	let birthday = "";
@@ -338,7 +339,7 @@ App.Desc.ageAndHealth = function(slave) {
 				r += `only ${num(slave.actualAge)} years old. `;
 			}
 		} else if (slave.actualAge < 13) {
-			r += `a little ${boy}, `;
+			r += `a little ${girl}, `;
 			if (V.showAgeDetail) {
 				r += `${num(slave.actualAge)} years old${birthday}. `;
 			} else {
@@ -458,7 +459,7 @@ App.Desc.ageAndHealth = function(slave) {
 				} else if (slave.visualAge < 13) {
 					r += `has induced <span class="orange">NCS</span> and will have a ${bodyNCS} body for the rest of ${his} life. `;
 				} else if (slave.visualAge < 20) {
-					r += `still has a teen body for now, but with ${his} <span class="orange">NCS,</span> ${he} will eventually regress in age to look like a little ${boy} again. `;
+					r += `still has a teen body for now, but with ${his} <span class="orange">NCS,</span> ${he} will eventually regress in age to look like a little ${girl} again. `;
 				} else {
 					r += `still has the body of an adult, but ${his} <span class="orange">NCS</span> has `;
 					if (slave.physicalAge - slave.visualAge <= 5) {
@@ -597,7 +598,7 @@ App.Desc.brand = function(slave, surface) {
 
 		if (slave.brand) {
 			bellyAccessory = slave.bellyAccessory;
-			if (setup.fakeBellies.includes(bellyAccessory) && slave.brand.belly) {
+			if (setup.fakeBellies.includes(bellyAccessory) && slave.brand.belly !== 0) {
 				r += `${His} fake belly has ${slave.brand.belly} branded on it. `;
 			} else {
 				for (let [key, value] of Object.entries(slave.brand)) {
-- 
GitLab