From 7eabe61d609d89006e4107fe83f96889fc08d38b Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Sun, 20 Dec 2020 20:46:49 -0500 Subject: [PATCH] fix --- src/endWeek/saClothes.js | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index 3d24f393fee..6c41a232089 100644 --- a/src/endWeek/saClothes.js +++ b/src/endWeek/saClothes.js @@ -85,24 +85,24 @@ App.SlaveAssignment.clothes = (function() { * */ function clothingEffects(slave) { - if (App.Data.clothes.get(slave.clothes)) { - if (App.Data.clothes.get(slave.clothes).exposure === 4) { // Humiliation clothing check - if (slave.devotion >= -20) { - if (slave.fetish === "humiliation" && slave.fetishKnown === 0) { - r.push(`${He} pretends to be embarrassed by ${his} nudity but seems to get off on it. <span class="lightcoral">${He}'s into humiliation.</span>`); - slave.fetishKnown = 1; - } else if (slave.fetish === "humiliation" && slave.fetishStrength > 60) { - r.push(`${He} pretends to be embarrassed by ${his} nudity but <span class="hotpink">openly gets off on it.</span>`); - slave.devotion += 2; - } else if (slave.fetish === "humiliation") { - r.push(`${He} pretends to be embarrassed by ${his} nudity but <span class="hotpink">secretly gets off on it.</span>`); - slave.devotion += 1; - } else if (slave.energy > 95) { - r.push(`${His} libido is so strong that ${he} <span class="hotpink">enjoys being naked and available.</span>`); - slave.devotion += 1; - } + if (["body oil", "no clothing"].includes(slave.clothes)) { + if (slave.devotion >= -20) { + if (slave.fetish === "humiliation" && slave.fetishKnown === 0) { + r.push(`${He} pretends to be embarrassed by ${his} nudity but seems to get off on it. <span class="lightcoral">${He}'s into humiliation.</span>`); + slave.fetishKnown = 1; + } else if (slave.fetish === "humiliation" && slave.fetishStrength > 60) { + r.push(`${He} pretends to be embarrassed by ${his} nudity but <span class="hotpink">openly gets off on it.</span>`); + slave.devotion += 2; + } else if (slave.fetish === "humiliation") { + r.push(`${He} pretends to be embarrassed by ${his} nudity but <span class="hotpink">secretly gets off on it.</span>`); + slave.devotion += 1; + } else if (slave.energy > 95) { + r.push(`${His} libido is so strong that ${he} <span class="hotpink">enjoys being naked and available.</span>`); + slave.devotion += 1; } - } else if (App.Data.clothes.get(slave.clothes).harsh) { + } + } else if (App.Data.clothes.get(slave.clothes)) { + if (App.Data.clothes.get(slave.clothes).harsh) { switch (slave.clothes) { case "a penitent nuns habit": r.push(`The mortification of the flesh ${he} endures from wearing ${his} sackcloth habit slowly and painfully <span class="hotpink">purifies ${his} mind</span> of any but devoted, <span class="gold">fearful</span> thoughts. It's also <span class="health dec">unhealthy.</span>`); -- GitLab