From fbb76382bebb33fe09d70e9c8311ccd97bc661d8 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Mon, 31 Aug 2020 17:28:03 -0400
Subject: [PATCH] fixes

---
 .../specificMarkets/corporateMarket.js        | 27 ++++---------------
 1 file changed, 5 insertions(+), 22 deletions(-)

diff --git a/src/markets/specificMarkets/corporateMarket.js b/src/markets/specificMarkets/corporateMarket.js
index 39d2e38dacb..461820a7d1f 100644
--- a/src/markets/specificMarkets/corporateMarket.js
+++ b/src/markets/specificMarkets/corporateMarket.js
@@ -25,12 +25,7 @@ App.Markets.corporate = function() {
 			r.push(`shemale`);
 		}
 	}
-	r.push(`sales`);
-	if (V.corp.SpecAge === 3) {
-		r.push(womanU);
-	} else {
-		r.push(girlU);
-	}
+	r.push(`sales${V.corp.SpecAge === 3 ? womanU : girlU}`);
 	r.push(` in a slutty suit greets you properly. ${HeU}'s a corporate slave chosen for loyalty and intelligence, and to physically represent the brand.`);
 	if (V.corp.SpecHeight === 5) {
 		r.push(`Even before ${heU} engaged with you ${hisU} towering height made ${himU} stand out and caught your eye, from up close ${heU}'s even more impressive.`);
@@ -38,9 +33,9 @@ App.Markets.corporate = function() {
 		r.push(`${HeU}'s so short you have to physically look down on ${himU}.`);
 	}
 	if (V.corp.SpecInjection === 4) {
-		r.push(`${HeU} has awe - inspiring breasts which ${hisU} suit jacket helps support; even so, their bottoms reach past ${hisU} navel.`);
+		r.push(`${HeU} has awe-inspiring breasts which ${hisU} suit jacket helps support; even so, their bottoms reach past ${hisU} navel.`);
 	} else if (V.corp.SpecInjection === 5) {
-		r.push(`${HeU} has gigantic, milk - swollen breasts almost spilling out of ${hisU} suit.`);
+		r.push(`${HeU} has gigantic, milk-swollen breasts almost spilling out of ${hisU} suit.`);
 	} else if (V.corp.SpecImplants === 2) {
 		r.push(`${HeU} has enormous fake tits that ride inhumanly high on ${hisU} chest.`);
 	} else if (V.corp.SpecInjection === 3) {
@@ -74,13 +69,7 @@ App.Markets.corporate = function() {
 	} else if (V.corp.SpecMuscle === 5) {
 		r.push(`${HisU} suit is specially tailored to flatter ${hisU} visible musculature.`);
 	}
-	r.push(`Of course, you know all about the corporation, but sales`);
-	if (V.corp.SpecAge === 3) {
-		r.push(womenU);
-	} else {
-		r.push(`${girlU}s`);
-	}
-	r.push(`here have standing orders to treat you like any other customer, so you can review the market properly. The slave turns to `);
+	r.push(`Of course, you know all about the corporation, but sales${V.corp.SpecAge === 3 ? womenU : `${girlU}s`} here have standing orders to treat you like any other customer, so you can review the market properly. The slave turns to `);
 	if (V.corp.SpecAmputee !== 1) {
 		r.push(`a multimedia presentation on`);
 	} else {
@@ -113,13 +102,7 @@ App.Markets.corporate = function() {
 			r.push(`shemale`);
 		}
 	}
-	r.push(`sales`);
-	if (V.corp.SpecAge === 3) {
-		r.push(womanU);
-	} else {
-		r.push(girlU);
-	}
-	r.push(`directs you to the inventory interface that will allow you to peruse the corporation's slaves, and moves over to stand next to it, ready to answer any questions.`);
+	r.push(`sales${V.corp.SpecAge === 3 ? womanU : girlU} directs you to the inventory interface that will allow you to peruse the corporation's slaves, and moves over to stand next to it, ready to answer any questions.`);
 	if (V.PC.dick !== 0) {
 		r.push(`${HeU} positions ${himselfU} facing away from you and hikes up ${hisU} skirt to bare ${hisU}`);
 		if (V.corp.SpecInjection > 4) {
-- 
GitLab