From 40ecec0cac9b8f309c333b5a8e8dd62ce880fd19 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Sun, 14 Nov 2021 12:46:35 -0500
Subject: [PATCH] Use the capitalizing version of contextualIntro a few more
 places.

---
 src/events/RESS/review/shiftMasturbation.js  | 2 +-
 src/events/RESS/review/shiftSleep.js         | 4 ++--
 src/events/RESS/review/sleepingAmbivalent.js | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/events/RESS/review/shiftMasturbation.js b/src/events/RESS/review/shiftMasturbation.js
index 928a794c2cc..624960a9977 100644
--- a/src/events/RESS/review/shiftMasturbation.js
+++ b/src/events/RESS/review/shiftMasturbation.js
@@ -41,7 +41,7 @@ App.Events.RESSShiftMasturbation = class RESSShiftMasturbation extends App.Event
 			r.push(`Your personal assistant, ${capFirstChar(V.assistant.name)},`);
 		}
 		r.push(`manages a schedule for them, constantly changing it up to keep the sluts from getting predictable.`);
-		r.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
+		r.push(contextualIntro(V.PC, eventSlave, true, false, true));
 		r.push(`has just come on shift.`);
 		r.toParagraph();
 
diff --git a/src/events/RESS/review/shiftSleep.js b/src/events/RESS/review/shiftSleep.js
index fca1093d0c0..63424455ff8 100644
--- a/src/events/RESS/review/shiftSleep.js
+++ b/src/events/RESS/review/shiftSleep.js
@@ -2,7 +2,7 @@ App.Events.RESSShiftSleep = class RESSShiftSleep extends App.Events.BaseEvent {
 	eventPrerequisites() {
 		return [
 			() => V.corp.Incorporated !== 0,
-		]; // always valid if sufficient actors can be cast successfully
+		];
 	}
 
 	actorPrerequisites() {
@@ -40,7 +40,7 @@ App.Events.RESSShiftSleep = class RESSShiftSleep extends App.Events.BaseEvent {
 			r.push(`Your personal assistant, ${capFirstChar(V.assistant.name)},`);
 		}
 		r.push(`manages a schedule for them, constantly changing it up to keep the sluts from getting predictable.`);
-		r.push(App.UI.DOM.slaveDescriptionDialog(eventSlave));
+		r.push(contextualIntro(V.PC, eventSlave, true, false, true));
 		r.push(`has just come on shift.`);
 		r.toParagraph();
 
diff --git a/src/events/RESS/review/sleepingAmbivalent.js b/src/events/RESS/review/sleepingAmbivalent.js
index eaefbb58fd6..721e65ae637 100644
--- a/src/events/RESS/review/sleepingAmbivalent.js
+++ b/src/events/RESS/review/sleepingAmbivalent.js
@@ -31,7 +31,7 @@ App.Events.RESSSleepingAmbivalent = class RESSSleepingAmbivalent extends App.Eve
 
 		App.Events.addParagraph(node, [
 			`Passing through the slave dormitory at night, you run your eyes down the row of sleeping chattel. The light here is low, but it's not dark. Slaves need to be able to find the bathroom, slaves on late assignments need to find their beds, and those permitted to do so need to be able to select slaves for sex.`,
-			contextualIntro(V.PC, eventSlave, true),
+			contextualIntro(V.PC, eventSlave, true, false, true),
 			`catches your eye. The dormitory is kept at a pleasant temperature so that the slaves, who of course sleep nude, are comfortable on their bedrolls covered by a single sheet, or nothing at all. ${He} probably went to sleep with ${his} sheet pulled up to ${his} chin, which is normal behavior for slaves who aren't yet accepting of their status as compulsory sex objects, but ${he}'s shrugged it down. Half ${his} torso is bare.`
 		]);
 		let r = [];
-- 
GitLab