diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js
index 3d24f393feeb42574dd85efb12570fe51a4b4602..6c41a2320895c2650da97cb455c9297a6f743355 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>`);