From 2535a0198a30d690035b7d3f19d92ce8ad3ce06a Mon Sep 17 00:00:00 2001 From: lowercasedonkey <lowercasedonkey@gmail.com> Date: Mon, 26 Oct 2020 01:58:31 -0400 Subject: [PATCH] fix --- src/uncategorized/saRules.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/uncategorized/saRules.js b/src/uncategorized/saRules.js index 4c34c04cef6..613fe3323af 100644 --- a/src/uncategorized/saRules.js +++ b/src/uncategorized/saRules.js @@ -16,6 +16,7 @@ App.SlaveAssignment.rules = function(slave) { } = getPronouns(slave); let wife2; let _milkResult; + let _wardenFunTimes; r.push(`${He}`); if (slave.fetish === "mindbroken") { r.push(`is mentally broken so none of the rules have any impact.`); @@ -897,7 +898,7 @@ App.SlaveAssignment.rules = function(slave) { r.push(App.SlaveAssignment.rewardAndPunishment(slave)); break; case "be confined in the cellblock": - let _wardenFunTimes = 0; + _wardenFunTimes = 0; if (V.flSex.has(slave.ID)) { _wardenFunTimes = random(0, 5); slave.need -= (10 * _wardenFunTimes); -- GitLab