diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js
index 36224f397bdecf866f2484b6ffddc635e44cfccf..188bc1c17cadb11259c53125bf26f34cfbf7cfd7 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") {