From c944cca63fdb824f84373f676d869660018363b8 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Wed, 12 Dec 2018 20:25:29 -0500
Subject: [PATCH] fix

---
 devNotes/twine JS.txt | 1 +
 src/js/utilJS.tw      | 1 +
 2 files changed, 2 insertions(+)

diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 56214a1f7ba..5d562f285a8 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -4196,6 +4196,7 @@ window.removeDuplicates = function removeDuplicates(array) {
 
 window.induceLactation = function induceLactation(slave) {
 	let pronouns = getPronouns(slave);
+	let His = capFirstChar(pronouns.possessive);
 	let r = ``;
 	if (slave.induceLactation >= 10) {
 		if (jsRandom(1,100) < slave.induceLactation) {
diff --git a/src/js/utilJS.tw b/src/js/utilJS.tw
index 09f0bc84758..2c05fc54bb5 100644
--- a/src/js/utilJS.tw
+++ b/src/js/utilJS.tw
@@ -1043,6 +1043,7 @@ window.removeDuplicates = function removeDuplicates(array) {
 
 window.induceLactation = function induceLactation(slave) {
 	let pronouns = getPronouns(slave);
+	let His = capFirstChar(pronouns.possessive);
 	let r = ``;
 	if (slave.induceLactation >= 10) {
 		if (jsRandom(1,100) < slave.induceLactation) {
-- 
GitLab