diff --git a/js/003-data/slaveSummaryData.js b/js/003-data/slaveSummaryData.js index 8d8a128d7dae20b8b2c113903a6988619762ee9e..b579cb045c4ef6c8b544afecd12032bfb2117c5a 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 046187480aede75f94fee7b5b6f14a9ac72359b4..36224f397bdecf866f2484b6ffddc635e44cfccf 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>`);