From 4932613bc962ec36e073cebe9330a913220e4d28 Mon Sep 17 00:00:00 2001
From: Anu <anulithic@gmail.com>
Date: Thu, 4 Jan 2024 15:08:20 -0800
Subject: [PATCH] Corset limit alternative: intensify and reword

---
 js/003-data/clothes/001-slaveWearData.js | 4 ++--
 src/endWeek/saClothes.js                 | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/js/003-data/clothes/001-slaveWearData.js b/js/003-data/clothes/001-slaveWearData.js
index 0b21ff16ac8..5cb798c76f4 100644
--- a/js/003-data/clothes/001-slaveWearData.js
+++ b/js/003-data/clothes/001-slaveWearData.js
@@ -1566,13 +1566,13 @@ App.Data.bellyAccessory = new Map([
 	["a corset",
 		{
 			name: "Tight corset",
-			note: "Slowly narrows the waist into a wispy one."
+			note: "Slowly narrows the waist through femininity into the start of a waspish hourglass."
 		}
 	],
 	["an extreme corset",
 		{
 			name: "Extreme corset",
-			note: "Narrows the waist up to an absurd level, painfully if waist is feminine or wider (increasing obedience and fear in resistant slaves), but risks miscarriage if a pregnant belly becomes too big."
+			note: "Narrows the waist through waspish into absurd levels, painfully if waist is feminine or wider (increasing obedience and fear in resistant slaves), but risks miscarriage if a pregnant belly becomes too big."
 		}
 	],
 	["a support band",
diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js
index 188bc1c17ca..5ab493ccdbc 100644
--- a/src/endWeek/saClothes.js
+++ b/src/endWeek/saClothes.js
@@ -755,11 +755,11 @@ 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 <= -45) {
 					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>`);
-					slave.waist = Math.clamp(slave.waist - 3, -41, 100);
+					slave.waist = Math.clamp(slave.waist - 3, -45, 100);
 				}
 			}
 		} else if (slave.bellyAccessory === "a support band") {
-- 
GitLab