diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js
index a797a014f5efe64d365ba31407a0cfaa1abfb4e3..914f95a5d114e439633608ac242b6f5e80834ffd 100644
--- a/src/endWeek/saClothes.js
+++ b/src/endWeek/saClothes.js
@@ -274,9 +274,17 @@ App.SlaveAssignment.clothes = (function() {
 				break;
 			default:
 				if (slave.devotion <= 20) {
-					r.push(`${He} is <span class="mediumorchid">inappropriately proud</span> of the nice clothes ${he}'s wearing, <span class="mediumaquamarine">building ${his} confidence.</span>`);
+					if (App.Data.clothes.get(slave.clothes).exposure === 0) {
+						r.push(`${He} is <span class="mediumorchid">inappropriately proud</span> of the modest clothes ${he}'s wearing; their decency <span class="mediumaquamarine">rapidly building ${his} confidence.</span>`);
+						slave.trust += 7;
+					} else if (App.Data.clothes.get(slave.clothes).exposure === 1) {
+						r.push(`${He} is <span class="mediumorchid">inappropriately proud</span> of the nice clothes ${he}'s wearing; their relative decency <span class="mediumaquamarine">building ${his} confidence.</span>`);
+						slave.trust += 5;
+					} else if (App.Data.clothes.get(slave.clothes).exposure <= 3) {
+						r.push(`${He} is <span class="mediumorchid">inappropriately proud</span> of the nice clothes ${he}'s wearing, <span class="mediumaquamarine">building ${his} confidence.</span>`);
+						slave.trust += 3;
+					}
 					slave.devotion -= 5;
-					slave.trust += 3;
 				} else if (slave.fetish === "boobs" && slave.clothes === "a monokini") {
 					if (slave.fetishKnown === 0) {
 						r.push(`${He} pretends to be embarrassed by how ${his} monokini draws attention to ${his} breasts but <span class="hotpink">seems to get off on it.</span>`);