From 1b49a000864a1fae174045856cffab26b7328dcc Mon Sep 17 00:00:00 2001 From: svornost <11434-svornost@users.noreply.gitgud.io> Date: Thu, 14 May 2020 17:53:06 -0700 Subject: [PATCH] Fix "caring Wardeness" penalty --- src/endWeek/healthFunctions.js | 2 +- src/endWeek/saStayConfined.js | 2 +- src/uncategorized/cellblockReport.tw | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/endWeek/healthFunctions.js b/src/endWeek/healthFunctions.js index b3db72be39e..7ed343eae1b 100644 --- a/src/endWeek/healthFunctions.js +++ b/src/endWeek/healthFunctions.js @@ -451,7 +451,7 @@ globalThis.tired = function(slave) { } else { assignment += 40; } - } else if (V.Wardeness.sexualFlaw === "caring") { + } else if (V.Wardeness.sexualQuirk === "caring") { assignment += 5; } else if (V.Wardeness.sexualFlaw === "malicious" || V.Wardeness.sexualFlaw === "abusive") { if (H.condition > 20) { diff --git a/src/endWeek/saStayConfined.js b/src/endWeek/saStayConfined.js index a4e318a7caa..377f4bcd31d 100644 --- a/src/endWeek/saStayConfined.js +++ b/src/endWeek/saStayConfined.js @@ -68,7 +68,7 @@ App.SlaveAssignment.stayConfined = function(slave) { } else { t += `'s empty mind is void of mercy; This broken Wardeness sees <span class="red">no need for breaks nor rest.</span>`; } - } else if (V.Wardeness.sexualFlaw === "caring") { + } else if (V.Wardeness.sexualQuirk === "caring") { t += ` is too caring and has to focus on not coddling ${him}.`; } else if (V.Wardeness.sexualFlaw === "malicious" || V.Wardeness.sexualFlaw === "abusive") { if (slave.health.condition > 20) { diff --git a/src/uncategorized/cellblockReport.tw b/src/uncategorized/cellblockReport.tw index a87bcbe9e95..c4a7a01421a 100644 --- a/src/uncategorized/cellblockReport.tw +++ b/src/uncategorized/cellblockReport.tw @@ -74,7 +74,7 @@ <<if $Wardeness.sexualFlaw == "malicious" || $Wardeness.sexualFlaw == "abusive">> <<set _devBonus++, _trustMalus += 2, _idleBonus += 2>> Sexual abuse of prisoners has become an end for $him, not a means. $He inspires $his prisoners to do everything possible to qualify to get away from $him, even as $he slowly grinds away their interest in sex to do it. - <<elseif $Wardeness.sexualFlaw == "caring">> + <<elseif $Wardeness.sexualQuirk == "caring">> <<set _devBonus--, _trustMalus--, _idleBonus-->> $His kindness sometimes shows through $his tough facade, letting prisoners get off easier than they should. <</if>> -- GitLab