diff --git a/src/endWeek/healthFunctions.js b/src/endWeek/healthFunctions.js
index 69fc4eb61b1a34046e22c809c799a35bef524b82..b3db72be39eb804aedc89cd03f41d7d625e0f806 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") {