From 76b981368386293563e3eeb5a1e93aa6655e23b8 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 21 Dec 2020 14:18:00 -0500
Subject: [PATCH] tweaks

---
 src/npc/startingGirls/startingGirls.js | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/src/npc/startingGirls/startingGirls.js b/src/npc/startingGirls/startingGirls.js
index ffd592cdd7d..2b9f03623ce 100644
--- a/src/npc/startingGirls/startingGirls.js
+++ b/src/npc/startingGirls/startingGirls.js
@@ -1061,7 +1061,6 @@ App.StartingGirls.physical = function(slave) {
 App.StartingGirls.profile = function(slave) {
 	const el = new DocumentFragment();
 	let options = new App.UI.OptionsGroup();
-	let r;
 	let option;
 	const {His} = getPronouns(slave);
 
@@ -1158,17 +1157,22 @@ App.StartingGirls.profile = function(slave) {
 		});
 
 	option = options.addOption("Prestige", "prestige", slave)
-		.addValueList([["None", 0], ["Locally known", 1], ["Regionally famous", 2], ["World renowned", 3]]);
+		.addValueList([
+			["None", 0],
+			["Locally known", 1],
+			["Regionally famous", 2],
+			["World renowned", 3]
+		]);
 	if (slave.prestige > 0) {
-		r = [];
+		const r = [];
 		r.push("Starting slaves incur an extreme cost penalty for prestige. This slave's");
 		if (slave.actualAge >= 25) {
 			if (slave.actualAge > 35) {
-				r.push(" advanced");
+				r.push("advanced");
 			}
-			r.push(" age decreases the penalty.");
+			r.push("age decreases the penalty.");
 		} else {
-			r.push(" young age requires paying the full penalty.");
+			r.push("young age requires paying the full penalty.");
 		}
 		option.addComment(`<span class=warning>${r.join(" ")}</span>`);
 	}
-- 
GitLab