From aaabc8edcfe1c2de0c149bf5ec571f6c2bdfec17 Mon Sep 17 00:00:00 2001
From: AlacoGit <alacofruxo@gmail.com>
Date: Fri, 19 Jul 2024 15:57:15 +0200
Subject: [PATCH 1/2] fix RA waist description

---
 js/rulesAssistant/conditionEvaluation.js | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/js/rulesAssistant/conditionEvaluation.js b/js/rulesAssistant/conditionEvaluation.js
index c73b0687cf6..305e2b4d56f 100644
--- a/js/rulesAssistant/conditionEvaluation.js
+++ b/js/rulesAssistant/conditionEvaluation.js
@@ -612,12 +612,12 @@ App.RA.Activation.populateGetters = function() {
 		name: "Accent", description: "No accent: 0, Nice accent: 1, Bad accent: 2, Can't speak language: 3 and above",
 		val: c => c.slave.accent
 	});
-	gm.addNumber("waist", {
-		name: "Waist",
-		description: "Masculine waist: (95, ∞), Ugly waist: (40, 95], Unattractive waist: (10, 40], " +
-			"Average waist: [-10, 10], Feminine waist: [-40, -10), Wasp waist: [-95, -40), Absurdly narrow: (-∞, -95)",
-		val: c => c.slave.waist
-	});
+    gm.addNumber("waist", {
+        name: "Waist",
+        description: "Absurdly narrow: (-∞, -95), Wasp waist: [-95, -40), Feminine waist: [-40, -10), " +
+            "Average waist: [-10, 10], Unattractive waist: (10, 40], Ugly waist: (40, 95], Masculine waist: (95, ∞)",
+        val: c => c.slave.waist
+    });
 	gm.addNumber("chem", {
 		name: "Carcinogen Buildup",
 		description: "Side effects from drug use. If greater than 10 will have negative consequences.",
-- 
GitLab


From 5df1a6f8d959524aef16403a015f1e194ac862c4 Mon Sep 17 00:00:00 2001
From: AlacoGit <alacofruxo@gmail.com>
Date: Fri, 19 Jul 2024 15:58:13 +0200
Subject: [PATCH 2/2] fix RA waist description

---
 js/rulesAssistant/conditionEvaluation.js | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/js/rulesAssistant/conditionEvaluation.js b/js/rulesAssistant/conditionEvaluation.js
index 305e2b4d56f..b13c7a941ac 100644
--- a/js/rulesAssistant/conditionEvaluation.js
+++ b/js/rulesAssistant/conditionEvaluation.js
@@ -612,12 +612,12 @@ App.RA.Activation.populateGetters = function() {
 		name: "Accent", description: "No accent: 0, Nice accent: 1, Bad accent: 2, Can't speak language: 3 and above",
 		val: c => c.slave.accent
 	});
-    gm.addNumber("waist", {
-        name: "Waist",
-        description: "Absurdly narrow: (-∞, -95), Wasp waist: [-95, -40), Feminine waist: [-40, -10), " +
-            "Average waist: [-10, 10], Unattractive waist: (10, 40], Ugly waist: (40, 95], Masculine waist: (95, ∞)",
-        val: c => c.slave.waist
-    });
+	gm.addNumber("waist", {
+		name: "Waist",
+		description: "Absurdly narrow: (-∞, -95), Wasp waist: [-95, -40), Feminine waist: [-40, -10), " +
+			"Average waist: [-10, 10], Unattractive waist: (10, 40], Ugly waist: (40, 95], Masculine waist: (95, ∞)",
+		val: c => c.slave.waist
+	});
 	gm.addNumber("chem", {
 		name: "Carcinogen Buildup",
 		description: "Side effects from drug use. If greater than 10 will have negative consequences.",
-- 
GitLab