diff --git a/src/pregmod/FCTV/FCTV.js b/src/pregmod/FCTV/FCTV.js index bf5e60289eea5b20088f4551afc85bc7febf6a00..729a102468cd30e9dbed44bc1a15037122a24fd5 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 5e84da5eebd7bf34ea85d73c55679d2b1cec05ce..e2ea4554e665375363955c7e124f3919f3f600b8 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) {