From a33f07f4ea134d8586a54bcfe4d41aeba08ca3e0 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Tue, 11 Jun 2024 21:25:55 +0000
Subject: [PATCH] Redesign saClothes shoe else.

---
 src/endWeek/saClothes.js | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js
index 9bf96397294..6d3e146c44e 100644
--- a/src/endWeek/saClothes.js
+++ b/src/endWeek/saClothes.js
@@ -986,16 +986,14 @@ App.SlaveAssignment.clothes = function saClothes(slave) {
 				r.push(`The insane boost in stature from ${his} absurd footwear <span class="trust inc">gives ${him} a confident stance,</span> even if ${he} is scared to take a step.`);
 				slave.trust += 2;
 			}
-		} else {
+		} else if (slave.shoes === "pumps") {
 			if (slave.heels === 1 && canStand(slave) && slave.fetish !== Fetish.MINDBROKEN) {
-				if (slave.shoes === "pumps") {
-					r.push(`While ${he} can just barely stand with ${his} heeled pumps, ${he} is incapable of taking a step in them.`);
-				}
-			} else if (slave.fuckdoll === 0 && slave.fetish !== Fetish.MINDBROKEN && canWalk(slave) && slave.height < 160 && slave.devotion <= 20) {
-				if (slave.shoes === "platform shoes") {
-					r.push(`The added height from ${his} platform shoes gives the short ${girl} <span class="trust inc">a boost of confidence.</span>`);
-					slave.trust++;
-				}
+				r.push(`While ${he} can just barely stand with ${his} heeled pumps, ${he} is incapable of taking a step in them.`);
+			}
+		} else if (slave.shoes === "platform shoes") {
+			if (slave.fuckdoll === 0 && slave.fetish !== Fetish.MINDBROKEN && canWalk(slave) && slave.height < 160 && slave.devotion <= 20) {
+				r.push(`The added height from ${his} platform shoes gives the short ${girl} <span class="trust inc">a boost of confidence.</span>`);
+				slave.trust++;
 			}
 		}
 	}
-- 
GitLab