From cf6cc3eb791f9c0dc2fe2d51594beedd2e86fc8c Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 22 Oct 2020 00:23:37 -0400
Subject: [PATCH] tweaks

---
 src/js/slaveCostJS.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js
index d25d6d1471a..3cf15015d3f 100644
--- a/src/js/slaveCostJS.js
+++ b/src/js/slaveCostJS.js
@@ -723,7 +723,7 @@ globalThis.BeautyArray = (function() {
 			} else if (slave.boobs <= 3000) {
 				adjustBeauty("Boob Size: Less than N: Transformation Fetishist / Asset Expansionist", (26.25 + 0.025 * (slave.boobs - 2050))); /* 50 */
 			} else if (slave.boobs <= 25000) {
-				adjustBeauty("Boob Size: Scalebreaking: Transformation Fetishist / Asset Expansionist", (50 + 0.005 * (slave.boobs - 3000))); /* 160 - this might need to be lowered. Maybe drop the 50? Otherwise break it down more. */
+				adjustBeauty("Boob Size: Scale-breaking: Transformation Fetishist / Asset Expansionist", (50 + 0.005 * (slave.boobs - 3000))); /* 160 - this might need to be lowered. Maybe drop the 50? Otherwise break it down more. */
 			} else {
 				adjustBeauty("Boob Size: Inconceivable: Transformation Fetishist / Asset Expansionist", (160 + 0.001 * (slave.boobs - 25000))); /* 185 */
 			}
@@ -745,7 +745,7 @@ globalThis.BeautyArray = (function() {
 			} else if (slave.boobs <= 3600) {
 				adjustBeauty("Boob Size: Less than P: General", (32 + (0.005 * (slave.boobs - 2400)))); /* 38 */
 			} else if (slave.boobs <= 10000) {
-				adjustBeauty("Boob Size: Less than Scalebreaking: General", 38);
+				adjustBeauty("Boob Size: Less than Scale-breaking: General", 38);
 			} else if (slave.boobs <= 25000) {
 				adjustBeauty("Boob Size: Less than Inconceivable: General", (30));
 			} else {
@@ -1229,7 +1229,7 @@ globalThis.BeautyArray = (function() {
 		}
 		if (slave.faceShape === "cute" && slave.face > 0) {
 			/* uggos need not apply, maybe a small boost for other faceShapes */
-			adjustBeauty("Femboy: Futa Law", (((arcology.FSGenderRadicalist / 25) * (slave.face / 30)) - 2)); /* gives a slightly better boost than androgynous does with gendrad boost, 15.3 */
+			adjustBeauty("Femboy: Futa Law", (((arcology.FSGenderRadicalist / 25) * (slave.face / 30)) - 2)); /* gives a slightly better boost than androgynous does with gender radical boost, 15.3 */
 		}
 		if (slave.nipples === "tiny") {
 			adjustBeauty("Femboy: Futa Law", 5);
-- 
GitLab