From 01126750803786a2e430ad476d12476121d05b2e Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Wed, 30 Dec 2020 18:07:58 -0500
Subject: [PATCH] fix boobsImplants always showing up.

---
 src/npc/descriptions/boobs/boobsShape.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/npc/descriptions/boobs/boobsShape.js b/src/npc/descriptions/boobs/boobsShape.js
index e7395d7b810..dfcd796f699 100644
--- a/src/npc/descriptions/boobs/boobsShape.js
+++ b/src/npc/descriptions/boobs/boobsShape.js
@@ -43,7 +43,7 @@ App.Desc.boobsShape = function(slave) {
 				} else {
 					r.push(`They're nicely rounded and rest naturally.`); // This shouldn't be reachable
 				}
-			} else if (slave.boobsImplant <= 400) {
+			} else if (slave.boobsImplant > 0 && slave.boobsImplant <= 400) {
 				if (slave.boobsImplant / slave.boobs < 0.25) {
 					r.push(`${He} has ${slave.boobsImplant}cc breast implants. They don't change much, since they are buried in as much boob as they are.`);
 					if (slave.boobs > 1000) {
@@ -56,7 +56,7 @@ App.Desc.boobsShape = function(slave) {
 				} else {
 					r.push(`${He} has ${slave.boobsImplant}cc breast implants. ${His} tits look fairly natural, mostly because they're so small.`);
 				}
-			} else if (slave.boobsImplant <= 600) {
+			} else if (slave.boobsImplant > 0 && slave.boobsImplant <= 600) {
 				if (slave.boobsImplant / slave.boobs < 0.25) {
 					r.push(`${He} has ${slave.boobsImplant}cc breast implants. They don't change much, since they are buried in as much boob as they are.`);
 					if (slave.boobs > 1000) {
@@ -67,7 +67,7 @@ App.Desc.boobsShape = function(slave) {
 				} else {
 					r.push(`${He} has ${slave.boobsImplant} cc breast implants. ${His} implants are well done, but ${his} breasts are so rounded and high that they are clearly artificial.`);
 				}
-			} else if (slave.boobsImplant > 600) {
+			} else if (slave.boobsImplant > 0 && slave.boobsImplant > 600) {
 				r.push(`${He} has ${slave.boobsImplant} cc`);
 				if (slave.boobsImplant / slave.boobs >= 0.75) {
 					r.push(`${implantType} implants. They are extremely obvious; with little natural breast tissue to support them, they look like a pair of balloons attached to ${his} chest.`);
-- 
GitLab