From 77a00245a48c29075e92a67b3c2bd7b0ae74df56 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Wed, 30 Dec 2020 18:24:39 -0500
Subject: [PATCH] simplify check

---
 src/npc/descriptions/boobs/boobsShape.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/npc/descriptions/boobs/boobsShape.js b/src/npc/descriptions/boobs/boobsShape.js
index dfcd796f699..171ad16649f 100644
--- a/src/npc/descriptions/boobs/boobsShape.js
+++ b/src/npc/descriptions/boobs/boobsShape.js
@@ -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 > 0 && slave.boobsImplant > 600) {
+			} else if (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