From f1fd3eb97a8eebcd6af0fb0729f42da1cb0392bb Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 30 Jul 2020 02:04:26 -0400
Subject: [PATCH] fix

---
 src/pregmod/FCTV/FCTV.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/pregmod/FCTV/FCTV.js b/src/pregmod/FCTV/FCTV.js
index e89935c3a8b..42c5ed63511 100644
--- a/src/pregmod/FCTV/FCTV.js
+++ b/src/pregmod/FCTV/FCTV.js
@@ -219,16 +219,16 @@ globalThis.FCTV = (function() {
 
 		p = document.createElement("p");
 
-		p.append(`Tired after a long day, you tell`);
+		p.append(`Tired after a long day, you tell `);
 		if (V.Concubine) {
 			p.append(`your concubine: `);
 			App.UI.DOM.appendNewElement("span", p, V.Concubine.slaveName, "pink");
 		} else {
 			p.append(V.assistant.name);
 		}
-		p.append(` to turn on the TV and`);
+		p.append(` to turn on the TV and `);
 		if (!usedRemote) {
-			p.append(` set FCTV to find a random show.Your larger - than - life screen flashes on, and is soon playing content from the popular streaming service. `);
+			p.append(`set FCTV to find a random show. Your larger-than-life screen flashes on, and is soon playing content from the popular streaming service. `);
 			if (V.cheatMode > 0 || V.debugMode > 0 || V.FCTV.remote) {
 				p.append(
 					App.UI.DOM.link(
@@ -263,9 +263,9 @@ globalThis.FCTV = (function() {
 				break;
 			}
 		} else if (usedRemote && (V.cheatMode > 0 || V.debugMode > 0 || V.FCTV.remote)) {
-			p.append(`bring you the remote so you can choose whatever show you find interesting.`);
+			p.append(`bring you the remote so you can choose whatever show you find interesting. `);
 			if (V.FCTV.channel.selected === V.FCTV.channel.last) {
-				App.UI.DOM.appendNewElement("div", p, `You tuned into this channel last week, you may want choose something else.`);
+				App.UI.DOM.appendNewElement("div", p, `You tuned into this channel last week, you may want to choose something else.`);
 			}
 			if (seeAll) {
 				div2 = document.createElement("div");
-- 
GitLab