From 4742256ae1ac5361d1353d0925b30342bdaab6cc Mon Sep 17 00:00:00 2001
From: Anu <barrychahal@gmail.com>
Date: Sun, 13 Jun 2021 05:49:09 +0000
Subject: [PATCH] Fix "You reassure her and open wide for a treat"

---
 src/npc/generate/newSlaveIntro.js | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/npc/generate/newSlaveIntro.js b/src/npc/generate/newSlaveIntro.js
index 9d2884a1218..4067378565a 100644
--- a/src/npc/generate/newSlaveIntro.js
+++ b/src/npc/generate/newSlaveIntro.js
@@ -4522,11 +4522,11 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 						result(slave) {
 							const el = new DocumentFragment();
 							let r = [];
-							r.push(`You securely restrain your new slave; for both ${his} own safety and so ${he} can't object to ${his} meal. You reassure ${him}`);
+							r.push(`You securely restrain your new slave; for both ${his} own safety and so ${he} can't object to ${his} meal. You reassure ${him}, and order ${him} to`);
 							if (hasAnyEyes(slave)) {
-								r.push(`and order ${him} to close ${his} eyes`);
+								r.push(`close ${his} eyes and`);
 							}
-							r.push(`and open wide for a treat.`);
+							r.push(`open wide for a treat.`);
 							if (canSee(slave)) {
 								r.push(`Since ${his} eyes are contentedly closed,`);
 							} else {
@@ -4610,11 +4610,11 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 						result(slave) {
 							const el = new DocumentFragment();
 							let r = [];
-							r.push(`You securely restrain your new slave; for both ${his} own safety and so ${he} can't object to ${his} meal. You reassure ${him}`);
+							r.push(`You securely restrain your new slave; for both ${his} own safety and so ${he} can't object to ${his} meal. You reassure ${him}, and order ${him} to`);
 							if (hasAnyEyes(slave)) {
-								r.push(`and order ${him} to close ${his} eyes`);
+								r.push(`close ${his} eyes and`);
 							}
-							r.push(`and open wide for a treat.`);
+							r.push(`open wide for a treat.`);
 							if (canSee(slave)) {
 								r.push(`Since ${his} eyes are contentedly closed,`);
 							} else {
-- 
GitLab