From 0233e483cf22a14b6fc7bf9255ab535e74a9b2d1 Mon Sep 17 00:00:00 2001 From: Pregmodder <pregmodder@gmail.com> Date: Fri, 8 May 2020 20:10:57 -0400 Subject: [PATCH] something I forgot about --- src/endWeek/healthFunctions.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/endWeek/healthFunctions.js b/src/endWeek/healthFunctions.js index 69fc4eb61b1..b3db72be39e 100644 --- a/src/endWeek/healthFunctions.js +++ b/src/endWeek/healthFunctions.js @@ -425,6 +425,9 @@ globalThis.tired = function(slave) { } else { assignment += 5; } + if (slave.balls > 0) { + assignment += 1; + } } else if (["work in the dairy"].includes(slave.assignment)) { if (V.dairyRestraintsSetting > 1) { // assignment += 100; // Full industrial Dairy is exhausting @@ -436,6 +439,9 @@ globalThis.tired = function(slave) { } else { assignment += 5; } + if (slave.balls > 0) { + assignment += 1; + } } } else if (["be confined in the cellblock", "stay confined"].includes(slave.assignment)) { // Generally not tiring unless a Wardeness is present, in which case she uses sleep deprivation to break slaves. if (slave.assignment === "be confined in the cellblock" && V.Wardeness !== 0 && slave.fetish !== "mindbroken") { -- GitLab