diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index 9bf96397294fbbfd438ff2c1b7da4110533e910b..6d3e146c44e769868ea214409ff50e633dac8b30 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++; } } }