From c749e0722e499eb06370c265256f60ce485d8f40 Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Tue, 2 Jan 2024 20:04:47 -0800
Subject: [PATCH] Corset blurb and waist summary fixes

---
 js/003-data/slaveSummaryData.js | 2 +-
 src/endWeek/saClothes.js        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/js/003-data/slaveSummaryData.js b/js/003-data/slaveSummaryData.js
index 8d8a128d7da..b579cb045c4 100644
--- a/js/003-data/slaveSummaryData.js
+++ b/js/003-data/slaveSummaryData.js
@@ -52,7 +52,7 @@ App.Data.SlaveSummary = {
 			},
 			waist: { // waist value + 100
 				4: {desc: "Absurdly narrow waist", style: "pink"},
-				60: {desc: "Hourglass waist", style: "pink"},
+				59: {desc: "Hourglass waist", style: "pink"},
 				89: {desc: "Feminine waist", style: "pink"},
 				110: {desc: "Average waist"},
 				140: {desc: "Unattractive waist", style: "red"},
diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js
index 046187480ae..36224f397bd 100644
--- a/src/endWeek/saClothes.js
+++ b/src/endWeek/saClothes.js
@@ -755,7 +755,7 @@ App.SlaveAssignment.clothes = function saClothes(slave) {
 			} else if (slave.belly >= 1500) {
 				r.push(`${His} corset lets ${his} rounded belly protrude comfortably but prevents any effect on ${his} waist.`);
 			} else {
-				if (slave.waist < -40) {
+				if (slave.waist <= -40) {
 					r.push(`${His} waist is so narrow that ${his} corsetage does not affect it.`);
 				} else {
 					r.push(`<span class="lime">The corseting narrows ${his} waist.</span>`);
-- 
GitLab