From 02abf3b598b15d3a558bf7fa1eef68c2c93c8a68 Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Thu, 20 Aug 2020 09:42:38 -0400
Subject: [PATCH] fix concubine in FCTV if none

---
 src/pregmod/FCTV/FCTVshows.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/pregmod/FCTV/FCTVshows.js b/src/pregmod/FCTV/FCTVshows.js
index 3cd8b7e80a6..605a8acab2c 100644
--- a/src/pregmod/FCTV/FCTVshows.js
+++ b/src/pregmod/FCTV/FCTVshows.js
@@ -2160,7 +2160,7 @@ App.Data.FCTV.channels = {
 				},
 				get text() {
 					const r = [];
-					r.push(`Today's show seems to be a Western of some sort, named "Steerswood". The sun is beating down on a young Indian woman standing on a scaffold with a noose around her neck. Her lower arms are bound tightly to each other behind her back keeping her hands free but unable to reach anything. The ropes squeeze her modest breasts so they poke out further than they usually would, and she is forced to stand on tiptoe to avoid choking. Around her are three women who evidently live in the town. They seem to be outraged at the Indian girl.</p>`);
+					r.push(`Today's show seems to be a Western of some sort, named "Steerswood". The sun is beating down on a young Indian woman standing on a scaffold with a noose around her neck. Her lower arms are bound tightly to each other behind her back keeping her hands free but unable to reach anything. The ropes squeeze her modest breasts so they poke out further than they usually would, and she is forced to stand on tiptoe to avoid choking. Around her are three women who evidently live in the town. They seem to be outraged at the Indian girl.`);
 
 					r.push(`<p>"You fucking whore!" the first one, a blonde, screams.</p>`);
 					r.push(`<p>"Tell her, Annie!" the second one chimes in.</p>`);
@@ -2174,7 +2174,7 @@ App.Data.FCTV.channels = {
 					r.push(`<p>The others pause for a moment, then start to laugh. "Ahh, I see where this is going. We could teach her. Yes, let's 'help her out'."</p>`);
 					r.push(`<p>Kate pulls out a large makeup kit. "Ordered from Sears and Roebuck by my husband, as a 'makeup' present for his dalliances. For all the times I used it I never got his attention. But you know, maybe I just never used <i>enough</i>."</p>`);
 					r.push(`<p>The camera pans away and when it returns, the Indian girl's face is positively caked with the most absurdly overdone makeup you have ever seen. It's both hot and hilarious in the same way.</p>`);
-					if (S.Concubine.makeup > 0) {
+					if (S.Concubine && S.Concubine.makeup > 0) {
 						r.push(`<p>You look at your own concubine's face. ${App.Desc.makeup(S.Concubine)}It's just the way you like it, but it's nowhere near as messy and overdone as the girl in the show.</p>`);
 					}
 					r.push(`<p>"Mmmm, good but now the rest of her seems a little plain," Annie frowns. "Don't loose girls wear big boots?"</p>`);
-- 
GitLab