From 9505cc292f363c7f0fb5b88895b64c004297725f Mon Sep 17 00:00:00 2001 From: hornylupus <19674-hornylupus@users.noreply.gitgud.io> Date: Thu, 4 Jan 2024 10:39:50 -0500 Subject: [PATCH] Revert corset to original behavior --- src/endWeek/saClothes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index 36224f397bd..188bc1c17ca 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 < -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>`); - slave.waist = Math.clamp(slave.waist - 3, -40, 100); + slave.waist = Math.clamp(slave.waist - 3, -41, 100); } } } else if (slave.bellyAccessory === "a support band") { -- GitLab