diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 69c07f0f63518ce6c99bbd8da0b1ec2436091c8c..a1a148198abc4ba6d117a740d5db3090f69557c5 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -10690,7 +10690,7 @@ window.saRest = function saRest(slave) {
 	} else if (slave.health > -100) {
 		t += ` ${His} <span class='green'>health recovers</span> with rest.`;
 		slave.health += 10;
-		if !(canHear(slave)) {
+		if (!(canHear(slave))) {
 			t += ` Since $he is deaf, the hustle and bustle of daily life in the penthouse <span class='green'>didn't bother $him at all.</span>`;
 			slave.health += 3;
 		} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
@@ -10747,7 +10747,7 @@ window.saServant = function saServant(slave) {
 				} else {
 					t += `uses sex as a reward, getting ${him} off when ${he} <span class='yellowgreen'>works harder.</span>`;
 				}
-				if !(canHear(slave)) {
+				if (!(canHear(slave))) {
 					t += ` However, $his inability to hear often leaves him oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
 					V.cash += (V.stewardessBonus/4);
 				} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
diff --git a/src/endWeek/saRest.tw b/src/endWeek/saRest.tw
index 933540565294ce31c4ed4b43a84e16a5c42a490e..504c0d547d6eeae611987202c49577915d99f66b 100644
--- a/src/endWeek/saRest.tw
+++ b/src/endWeek/saRest.tw
@@ -24,7 +24,7 @@ window.saRest = function saRest(slave) {
 	} else if (slave.health > -100) {
 		t += ` ${His} <span class='green'>health recovers</span> with rest.`;
 		slave.health += 10;
-		if !(canHear(slave)) {
+		if (!(canHear(slave))) {
 			t += ` Since $he is deaf, the hustle and bustle of daily life in the penthouse <span class='green'>didn't bother $him at all.</span>`;
 			slave.health += 3;
 		} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {
diff --git a/src/endWeek/saServant.tw b/src/endWeek/saServant.tw
index ec0f95a84190311e63ea53e9a968e5251f8ac3af..06f58b7a5390f5f0b2007cbf5d38882d08d115ec 100644
--- a/src/endWeek/saServant.tw
+++ b/src/endWeek/saServant.tw
@@ -24,7 +24,7 @@ window.saServant = function saServant(slave) {
 				} else {
 					t += `uses sex as a reward, getting ${him} off when ${he} <span class='yellowgreen'>works harder.</span>`;
 				}
-				if !(canHear(slave)) {
+				if (!(canHear(slave))) {
 					t += ` However, $his inability to hear often leaves him oblivious to ${V.Stewardess.slaveName}'s orders, limiting their meaningful interactions.`;
 					V.cash += (V.stewardessBonus/4);
 				} else if ((slave.hears == -1 && slave.earwear != "hearing aids") || (slave.hears == 0 && slave.earwear == "muffling ear plugs")) {