From d6546e981f8651165fec760a6ea1100d89348738 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Tue, 8 Aug 2023 13:59:55 -0400
Subject: [PATCH] Fix bad paragraph break

---
 src/events/PESS/pessWorshipfulImpregnatrix.js | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/events/PESS/pessWorshipfulImpregnatrix.js b/src/events/PESS/pessWorshipfulImpregnatrix.js
index 8788c1c79b6..da1e3aba500 100644
--- a/src/events/PESS/pessWorshipfulImpregnatrix.js
+++ b/src/events/PESS/pessWorshipfulImpregnatrix.js
@@ -19,11 +19,9 @@ App.Events.pessWorshipfulImpregnatrix = class pessWorshipfulImpregnatrix extends
 		const desc = SlaveTitle(S.HeadGirl);
 		App.Events.drawEventArt(node, S.HeadGirl);
 
-		App.Events.addParagraph(node, [
-			App.UI.DOM.slaveDescriptionDialog(S.HeadGirl),
-			`comes wearily into your office at the end of ${his} day to check in with you, like a good Head Girl should. You're busy at the moment, so ${he} waits quietly, not wanting to interrupt you. ${He} seems tired, and leans`
-		]);
 		let r = [];
+		r.push(contextualIntro(V.PC, S.HeadGirl, true, false, true));
+		r.push(`comes wearily into your office at the end of ${his} day to check in with you, like a good Head Girl should. You're busy at the moment, so ${he} waits quietly, not wanting to interrupt you. ${He} seems tired, and leans`);
 		if (S.HeadGirl.physicalAge > 35) {
 			r.push(`heavily`);
 		} else {
-- 
GitLab