diff --git a/src/pregmod/FCTV/FCTVshows.js b/src/pregmod/FCTV/FCTVshows.js index bf3ef050a3aa3e530d54b4c839dccc13dda54a82..ab9c07ddf7e2d21cc58cbc5e544d0ed062fd6e19 100644 --- a/src/pregmod/FCTV/FCTVshows.js +++ b/src/pregmod/FCTV/FCTVshows.js @@ -1009,19 +1009,19 @@ App.Data.FCTV.shows = { tags: [], loop: false, get intro() { - r = []; + const r = []; r.push(`which is currently showing an episode of the 'Modern Dairy' edutainment series, which opens with a montage of milk-related food and cooking shots. After the last of the opening credits disappears, the show sticks to a single shot from the montage, a delicious looking bowl of cereal. The camera zooms out to reveal the show's host wearing her trademark cow print leotard, and getting just a little too much enjoyment out of her cereal. She slowly puts the spoon down while savoring her cereal, reluctantly swallowing and starting the show. "Hi there y'all, welcome to another episode of Modern Dairy!" She gives the camera a wave — setting her gargantuan melons wobbling inside the spandex-like leotard — and the camera fades to black.`); if (V.seeExtreme === 0) { // TODO: weird shit. if (V.seeDicks === 0) { r.push(`<p class="note">CONTENT ADVISOR: Selecting show without too much hugging or hotdogs...</p>`); - FCTV.showRange(1, 1); + //FCTV.showRange(1, 1); } else { r.push(`<p class="note">CONTENT ADVISOR: Selecting show without too much hugging...</p>`); - FCTV.showRange(1, 2, 'either'); + //FCTV.showRange(1, 2, 'either'); } } else if (V.seeDicks === 0) { r.push(`<p class="note">CONTENT ADVISOR: Selecting show without too many hotdogs...</p>`); - FCTV.showRange(1, 3, 'either'); + //FCTV.showRange(1, 3, 'either'); } return r.join(" "); },