diff --git a/Changelog.txt b/Changelog.txt
index b5ef521fd3f63d2a9f2115207da7cbf15d0e309f..aef286bf315dd1d3064ca24f31f049afecfd83d2 100644
--- a/Changelog.txt
+++ b/Changelog.txt
@@ -2,7 +2,10 @@ Pregmod
 
 0.10.7.1-3.1.x
 
+	-slave health overhaul (short and long term health, exhuastion effects and illness)
 	-eye object overhaul
+	-organ farm cleanup
+	-limb cleaning
 	-added overflow feedback to demand
 	-added pit assign/remove rules to the RA
 	-fixes and cleaning
diff --git a/src/endWeek/saStayConfined.js b/src/endWeek/saStayConfined.js
index 94b1d3830ea47227948fc90966b236a71ee86295..76c38b32852f48830dd89a74f27e4da2b8b89aab 100644
--- a/src/endWeek/saStayConfined.js
+++ b/src/endWeek/saStayConfined.js
@@ -49,27 +49,27 @@ window.saStayConfined = function saStayConfined(slave) {
 		healthDamage(slave, 10);
 
 		if (slave.health.illness > 0 || slave.health.tired > 50) {
-			r += ` ${He} is`;
+			t += ` ${He} is`;
 			if (slave.health.illness === 1) {
-				r += ` feeling under the weather`;
+				t += ` feeling under the weather`;
 			} else if (slave.health.illness === 2) {
-				r += ` somewhat ill`;
+				t += ` somewhat ill`;
 			} else if (slave.health.illness === 3) {
-				r += ` sick`;
+				t += ` sick`;
 			} else if (slave.health.illness === 4) {
-				r += ` very sick`;
+				t += ` very sick`;
 			} else if (slave.health.illness === 5) {
-				r += ` terribly ill`;
+				t += ` terribly ill`;
 			}
 			if (slave.health.illness > 0 && slave.health.tired > 50) {
-				r += ` and`;
+				t += ` and`;
 			}
 			if (slave.health.tired < 80) {
-				r += ` tired`;
+				t += ` tired`;
 			} else {
-				r += ` exhausted`;
+				t += ` exhausted`;
 			}
-			r += ` ${his} misery only grows.`;
+			t += ` ${his} misery only grows.`;
 		}
 	} else {
 		t += `is oblivious to ${his} confinement.`;