From e0ae67e8cc3115a969079b33ed62b15eb665d79c Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 10 Jan 2021 12:39:20 -0500
Subject: [PATCH] Fix long long in description

---
 .../descriptions/crotch/vaginalAccessory.js   | 44 +++++++------------
 1 file changed, 17 insertions(+), 27 deletions(-)

diff --git a/src/npc/descriptions/crotch/vaginalAccessory.js b/src/npc/descriptions/crotch/vaginalAccessory.js
index f86f846aa52..9b5227dfd12 100644
--- a/src/npc/descriptions/crotch/vaginalAccessory.js
+++ b/src/npc/descriptions/crotch/vaginalAccessory.js
@@ -24,11 +24,9 @@ App.Desc.vaginalAccessory = function(slave) {
 			r.push(`A ${slave.vaginalAccessory} is attached on ${his} clit, ${held}.`);	// FIXME: not super happy with this
 			break;
 		case 1:
-			if (dildo.length === 1) {
-				/* TODO: these may need to be updated for slaves with gaping+ vaginas */
-				r.push(`${His} pussy is filled by a ${slave.vaginalAccessory} ${held}.`);
-			} else {
-				r.push(`${His} pussy is filled by a very long ${slave.vaginalAccessory} ${held}. It noticeably bulges ${his} stomach.`);
+			r.push(`${His} pussy is filled by a ${slave.vaginalAccessory} ${held}.`);/* TODO: these may need to be updated for slaves with gaping+ vaginas */
+			if (dildo.length > 1) {
+				r.push(`It noticeably bulges ${his} stomach.`);
 			}
 			break;
 		case 2:
@@ -40,34 +38,26 @@ App.Desc.vaginalAccessory = function(slave) {
 			} else {
 				r.push(`comfortably filled`);
 			}
-			if (dildo.length === 1) {
-				r.push(`by a large ${slave.vaginalAccessory} ${held}.`);
-			} else {
-				r.push(`by a very long and large ${slave.vaginalAccessory} ${held}. It noticeably bulges ${his} stomach.`);
+			r.push(`by a large ${slave.vaginalAccessory} ${held}.`);
+			if (dildo.length > 1) {
+				r.push(`It noticeably bulges ${his} stomach.`);
 			}
 			break;
 		case 3:
-			if (dildo.length === 1) {
-				if (slave.vagina < 4) {
-					r.push(`${His} pussy is filled to the breaking point by an enormous ${slave.vaginalAccessory}.`);
-					if (slave.fetish === "masochist" && slave.fetishKnown === 1 && slave.fetishStrength > 60) {
-						r.push(`${He} can barely move with the discomfort, but ${he} frequently climaxes with agony.`);
-					} else {
-						r.push(`${He} can barely move with the discomfort, and ${he} sometimes breaks down in tears at having ${his} cunt permanently stretched.`);
-					}
+			if (slave.vagina < 4) {
+				r.push(`${His} pussy is filled to the breaking point by an enormous ${slave.vaginalAccessory}.`);
+				if (dildo.length > 1) {
+					r.push(`It noticeably bulges ${his} stomach.`);
+				}
+				if (slave.fetish === "masochist" && slave.fetishKnown === 1 && slave.fetishStrength > 60) {
+					r.push(`${He} can barely move with the discomfort, but ${he} frequently climaxes with agony.`);
 				} else {
-					r.push(`${His} cavernous pussy is comfortably filled by a huge ${slave.vaginalAccessory}.`);
+					r.push(`${He} can barely move with the discomfort, and ${he} sometimes breaks down in tears at having ${his} cunt permanently stretched.`);
 				}
 			} else {
-				if (slave.vagina < 4) {
-					r.push(`${His} pussy is filled to the breaking point by an enormously wide and long ${slave.vaginalAccessory}. It noticeably bulges ${his} stomach.`);
-					if (slave.fetish === "masochist" && slave.fetishKnown === 1 && slave.fetishStrength > 60) {
-						r.push(`${He} can barely move with the discomfort, but ${he} frequently climaxes with agony.`);
-					} else {
-						r.push(`${He} can barely move with the discomfort, and ${he} sometimes breaks down in tears at having ${his} cunt permanently stretched.`);
-					}
-				} else {
-					r.push(`${His} cavernous pussy is comfortably filled by an enormously wide and long ${slave.vaginalAccessory}. It noticeably bulges ${his} stomach.`);
+				r.push(`${His} cavernous pussy is comfortably filled by a huge ${slave.vaginalAccessory}.`);
+				if (dildo.length > 1) {
+					r.push(`It noticeably bulges ${his} stomach.`);
 				}
 			}
 			if (slave.chastityVagina) {
-- 
GitLab