From b68ff633e3807914206b4afb305850197bd34634 Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 11 May 2020 01:56:31 -0400 Subject: [PATCH] fix --- src/endWeek/saClothes.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/endWeek/saClothes.js b/src/endWeek/saClothes.js index 50c5fcf1b48..4c9b2b5f020 100644 --- a/src/endWeek/saClothes.js +++ b/src/endWeek/saClothes.js @@ -444,13 +444,13 @@ App.SlaveAssignment.clothes = (function() { */ function maskEffects(slave) { if (slave.devotion <= 20) { - if (slave.collar === "porcelain mask") { + if (slave.faceAccessory === "porcelain mask") { r.push(`The beautiful porcelain mask ${he}'s wearing slowly erodes ${his} identity, forcing ${him} <span class="hotpink">to submit</span> to your will. ${He} <span class="gold">questions</span> who ${he} is.`); slave.devotion++; slave.trust -= 2; } } else { - if (slave.collar === "porcelain mask") { + if (slave.faceAccessory === "porcelain mask") { if (slave.fetish === "submissive" && slave.fetishStrength > 95) { r.push(`${He} <span class="hotpink">loves</span> how ${his} mask makes ${him} beautiful enough for you.`); slave.devotion += 1; @@ -468,28 +468,28 @@ App.SlaveAssignment.clothes = (function() { */ function mouthEffects(slave) { if (slave.devotion <= 20) { - if (slave.collar === "dildo gag") { + if (slave.mouthAccessory === "dildo gag") { r.push(`The dildo gag ${he}'s wearing <span class="gold">reminds ${him} to be afraid</span> with every breath ${he} must carefully take through ${his} nose.`); slave.trust -= 1; - } else if (slave.collar === "ball gag") { + } else if (slave.mouthAccessory === "ball gag") { r.push(`The ball gag ${he}'s wearing keeps ${his} mouth filled and, since ${he} can't speak out, forces ${him} <span class="hotpink">to submit</span> to your will. ${He} <span class="gold">fears</span> for ${his} safety with every suppressed word.`); slave.devotion++; slave.trust -= 2; - } else if (slave.collar === "ring gag") { + } else if (slave.mouthAccessory === "ring gag") { r.push(`The ring gag ${he}'s wearing keeps ${his} mouth stretched wide and drooling. Since ${he} can't speak clearly, it forces ${him} <span class="hotpink">to submit</span> to your will. ${He} <span class="gold">fears</span> for ${his} safety with every suppressed word.`); slave.devotion++; slave.trust -= 2; - } else if (slave.collar === "bit gag") { + } else if (slave.mouthAccessory === "bit gag") { r.push(`The uncomfortable bit gag ${he}'s wearing keeps ${his} mouth locked and, since ${he} can't speak out, forces ${him} <span class="hotpink">to submit</span> to your will. ${He} <span class="gold">fears</span> for ${his} safety with every suppressed word.`); slave.devotion++; slave.trust -= 2; - } else if (slave.collar === "massive dildo gag") { + } else if (slave.mouthAccessory === "massive dildo gag") { r.push(`The enormous dildo gag ${he}'s wearing <span class="gold">terrifies ${him}</span> that ${he} will soon be choking down cocks of similar size. ${He} can feel ${his} throat stretching around the giant dildo, and <span class="mediumorchid">resents you</span> for tormenting ${him} this way.`); slave.devotion -= 1; slave.trust -= 2; } } else { - if (slave.collar === "ball gag" || slave.collar === "bit gag" || slave.collar === "ring gag") { + if (slave.mouthAccessory === "ball gag" || slave.mouthAccessory === "bit gag" || slave.mouthAccessory === "ring gag") { if (slave.fetish === "submissive" && slave.fetishStrength > 95) { r.push(`${He} <span class="hotpink">loves</span> how ${his} gag forces ${him} to keep silent.`); slave.devotion += 1; @@ -499,13 +499,13 @@ App.SlaveAssignment.clothes = (function() { } } } - if (slave.collar === "dildo gag") { + if (slave.mouthAccessory === "dildo gag") { if (slave.skill.oral <= 10) { r.push(`Living gagged by a dildo, ${he} can't help but get better at having things down ${his} throat.`); r.push(`${SkillIncrease.Oral(slave, 5)}`); } } - if (slave.collar === "massive dildo gag") { + if (slave.mouthAccessory === "massive dildo gag") { if (slave.skill.oral < 75) { r.push(`Living gagged by such an immense dildo, ${he} can't help but get even better at having giant things rammed down ${his} throat.`); r.push(`${SkillIncrease.Oral(slave, 5)}`); -- GitLab