From 1c6059f923676daab9c94198b08df6818b5c7681 Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Mon, 11 Jan 2021 10:20:19 -0800
Subject: [PATCH] Fix missing period in new slave intro for relatives

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

diff --git a/src/npc/generate/newSlaveIntro.js b/src/npc/generate/newSlaveIntro.js
index 3f2e58d8721..2650a0b9a18 100644
--- a/src/npc/generate/newSlaveIntro.js
+++ b/src/npc/generate/newSlaveIntro.js
@@ -1465,6 +1465,8 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 								r.push(`like the whore ${he2} is.`);
 							} else if ((slave2.assignment === "serve in the master suite") || (slave2.assignment === "please you")) {
 								r.push(`like the fucktoy ${he2} is.`);
+							} else {
+								r.push(r.pop() + ".");
 							}
 							r.push(`As you finish, ${he2}`);
 							if (slave2.fetish === "cumslut") {
@@ -1531,6 +1533,8 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 								r.push(`like the whore ${he2} is.`);
 							} else if ((slave2.assignment === "serve in the master suite") || (slave2.assignment === "please you")) {
 								r.push(`like the fucktoy ${he2} is.`);
+							} else {
+								r.push(r.pop() + ".");
 							}
 							r.push(`As you finish, ${he2}`);
 							if (slave2.fetish === "cumslut") {
@@ -1597,6 +1601,8 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 								r.push(`like the whore ${he2} is.`);
 							} else if ((slave2.assignment === "serve in the master suite") || (slave2.assignment === "please you")) {
 								r.push(`like the fucktoy ${he2} is.`);
+							} else {
+								r.push(r.pop() + ".");
 							}
 							r.push(`As you finish, ${he2}`);
 							if (slave2.fetish === "cumslut") {
@@ -1654,6 +1660,8 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 								r.push(`like the whore ${he2} is.`);
 							} else if ((slave2.assignment === "serve in the master suite") || (slave2.assignment === "please you")) {
 								r.push(`like the fucktoy ${he2} is.`);
+							} else {
+								r.push(r.pop() + ".");
 							}
 							r.push(`As you finish, ${he2}`);
 							if (slave2.fetish === "cumslut") {
@@ -1720,6 +1728,8 @@ App.UI.newSlaveIntro = function(slave, slave2, {tankBorn = false, momInterest =
 								r.push(`like the whore ${he2} is.`);
 							} else if ((slave2.assignment === "serve in the master suite") || (slave2.assignment === "please you")) {
 								r.push(`like the fucktoy ${he2} is.`);
+							} else {
+								r.push(r.pop() + ".");
 							}
 							r.push(`As you finish, ${he2}`);
 							if (slave2.fetish === "cumslut") {
-- 
GitLab