From 7cea39045316d642f574550211bf48e13c04ae8c Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Fri, 17 Aug 2018 19:30:51 -0400
Subject: [PATCH] fix

---
 devNotes/twine JS.txt    | 4 ++--
 src/endWeek/saRest.tw    | 2 +-
 src/endWeek/saServant.tw | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 69c07f0f635..a1a148198ab 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 93354056529..504c0d547d6 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 ec0f95a8419..06f58b7a539 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")) {
-- 
GitLab