From 390ee2ef072fef1b80d8832fa6c2bac636c38b0f Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sun, 9 Jun 2024 18:19:00 -0400 Subject: [PATCH] fixes --- js/003-data/clothes/001-slaveWearData.js | 1 - src/endWeek/saDevotion.js | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/js/003-data/clothes/001-slaveWearData.js b/js/003-data/clothes/001-slaveWearData.js index b99156c14fa..073159f8dc0 100644 --- a/js/003-data/clothes/001-slaveWearData.js +++ b/js/003-data/clothes/001-slaveWearData.js @@ -746,7 +746,6 @@ App.Data.clothes = (new Map()) name: "Striped underwear", get requirements() { return V.boughtItem.clothing.pantsu === 1 || V.continent === "Japan"; }, exposure: 2, - topless: true } ) .set("a confederate army uniform", diff --git a/src/endWeek/saDevotion.js b/src/endWeek/saDevotion.js index 649aa859161..095e858f67d 100644 --- a/src/endWeek/saDevotion.js +++ b/src/endWeek/saDevotion.js @@ -267,11 +267,11 @@ App.SlaveAssignment.devotion = function saDevotion(slave) { } else if (intimidated > 0) { r.push(`${He} finds you intimidating, putting ${him} <span class="trust dec">on edge</span> around you.`); } else if (intimidated <= -5) { - r.push(`${He} finds you completely benign and <span class="trust dec">feels little threat</span> from you.`); + r.push(`${He} finds you completely benign and <span class="trust inc">feels little threat</span> from you.`); } else if (intimidated < 0) { r.push(`${He} doesn't find you very intimidating, allowing ${him} <span class="trust inc">to relax</span> around you.`); } - slave.trust += 1 * intimidated; + slave.trust -= 1 * intimidated; } if (slave.devotion <= 20 && slave.devotion >= -50) { if (slave.trust > 20 && slave.devotion <= -20) { -- GitLab