From 58d078a1d43a51e428c0da9d01ad72d819f91f1b Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Sat, 27 Apr 2019 16:12:43 -0400 Subject: [PATCH] Fixed bodymod error --- src/endWeek/saServeThePublic.js | 2 +- src/endWeek/saWhore.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/endWeek/saServeThePublic.js b/src/endWeek/saServeThePublic.js index c7c0ba7403f..6a627cac402 100644 --- a/src/endWeek/saServeThePublic.js +++ b/src/endWeek/saServeThePublic.js @@ -664,7 +664,7 @@ window.saServeThePublic = (function saServeThePublic() { r += ` The public fetishizes body mods and considers ${hers} interesting.`; } } else if (arcology.FSBodyPurist > 20 || arcology.FSPaternalist > 20) { - if (V.modScore > 7) { + if (V.modScore <= 7) { r += ` The public disapproves of body mods and is pleased that ${he}'s unspoiled in that regard.`; } else { r += ` The public disapproves of body mods and considers ${hers} unappealing.`; diff --git a/src/endWeek/saWhore.js b/src/endWeek/saWhore.js index 4b3c8559f1d..860d441b6d3 100644 --- a/src/endWeek/saWhore.js +++ b/src/endWeek/saWhore.js @@ -820,15 +820,15 @@ window.saWhore = (function saWhore() { if (arcology.FSTransformationFetishist > 20 || arcology.FSDegradationist > 20) { if ((V.modScore > 15) || (V.piercingScore > 8 && V.tatScore > 5)) { - r += ` Many customers fetishizes body mods and considers ${hers} fascinating.`; + r += ` Many customers fetishize body mods and considers ${hers} fascinating.`; } else if (V.modScore > 7) { - r += ` Many customers fetishizes body mods and considers ${hers} interesting.`; + r += ` Many customers fetishize body mods and considers ${hers} interesting.`; } } else if (arcology.FSBodyPurist > 20 || arcology.FSPaternalist > 20) { - if (V.modScore > 7) { - r += ` Many customers disapproves of body mods and is pleased that ${he}'s unspoiled in that regard.`; + if (V.modScore <= 7) { + r += ` Many customers disapprove of body mods and are pleased that ${he}'s unspoiled in that regard.`; } else { - r += ` Many customers disapproves of body mods and considers ${hers} unappealing.`; + r += ` Many customers disapprove of body mods and consider ${hers} unappealing.`; } } else { if ((V.modScore > 15) || (V.piercingScore > 8 && V.tatScore > 5)) { -- GitLab