From 95a33f6a3301adc7c42ba979018704d001e648cb Mon Sep 17 00:00:00 2001
From: lowercasedonkey <lowercasedonkey@gmail.com>
Date: Sun, 2 Aug 2020 12:53:35 -0400
Subject: [PATCH] change to outro

---
 src/pregmod/FCTV/FCTV.js      | 8 ++++----
 src/pregmod/FCTV/FCTVshows.js | 2 +-
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/pregmod/FCTV/FCTV.js b/src/pregmod/FCTV/FCTV.js
index bf5e60289ee..729a102468c 100644
--- a/src/pregmod/FCTV/FCTV.js
+++ b/src/pregmod/FCTV/FCTV.js
@@ -402,11 +402,11 @@ globalThis.FctvDisplay = function({usedRemote = 0, seeAll = 0} = {}) {
 				$(frag).append(channel.episode[epToShow].text);
 			}
 		}
-		if (channel.extro) {
-			if (typeof channel.extro === 'function') {
-				frag.append(channel.extro(slave, epToShow));
+		if (channel.outro) {
+			if (typeof channel.outro === 'function') {
+				frag.append(channel.outro(slave, epToShow));
 			} else {
-				frag.append(channel.extro);
+				frag.append(channel.outro);
 			}
 		}
 		return frag;
diff --git a/src/pregmod/FCTV/FCTVshows.js b/src/pregmod/FCTV/FCTVshows.js
index 5e84da5eebd..e2ea4554e66 100644
--- a/src/pregmod/FCTV/FCTVshows.js
+++ b/src/pregmod/FCTV/FCTVshows.js
@@ -743,7 +743,7 @@ App.Data.FCTV.shows = {
 		loop: true,
 		disableSelection: true,
 		intro: `which is currently streaming 'Home Slave Shopping'. It's a bit strange, shopping for slaves without inspecting them in person, but you have to admit it's kind of convenient. Plus, you might find something that'd be difficult to get in your own arcology's markets. You start watching at the end of one slave being displayed; the program goes into a lot of detail that isn't always available from shady salesmen at the market. Two hosts are displaying the merchandise and an older male reads details on each slave from a prompter, while a fit female works the slave for the camera to give viewers a good look at what they might purchase.`,
-		extro: function(slave, show) { // TODO: test.
+		outro: function(slave, show) { // TODO: test.
 			const p = document.createElement("p");
 			let cost = slaveCost(slave);
 			if (show < 3 || show > 6) {
-- 
GitLab