diff --git a/src/events/RESS/devotedAnalVirgin.js b/src/events/RESS/devotedAnalVirgin.js
index a710cd1c96dcc41af2c5ec7fa54c92b54c4e464c..f3e983c1212ad55daa058970dceaae9a528a44dd 100644
--- a/src/events/RESS/devotedAnalVirgin.js
+++ b/src/events/RESS/devotedAnalVirgin.js
@@ -92,7 +92,7 @@ App.Events.RESSDevotedAnalVirgin = class RESSDevotedAnalVirgin extends App.Event
 				}
 				t.push(`lavishing attention on ${his} nipples to ensure that ${he} has fun, too.`);
 			}
-			t.push(`${He} leaves your office feeling <span class="hotpink">very close to ${his} ${WrittenMaster()} indeed,</span> and seems to have forgotten ${his} unfucked butthole, for now.`);
+			t.push(`${He} leaves your office feeling <span class="hotpink">very close to ${his} ${WrittenMaster(eventSlave)} indeed,</span> and seems to have forgotten ${his} unfucked butthole, for now.`);
 
 			eventSlave.devotion += 4;
 			if (eventSlave.vagina > 0 && canDoVaginal(eventSlave)) {
diff --git a/src/events/RESS/devotedVirgin.js b/src/events/RESS/devotedVirgin.js
index dd9089ef9c5523106b44669b65fdaa8afc95122f..5a9b3cd19076eff58f32c2f0cf91c82e1d33fb6e 100644
--- a/src/events/RESS/devotedVirgin.js
+++ b/src/events/RESS/devotedVirgin.js
@@ -74,7 +74,7 @@ App.Events.RESSDevotedVirgin = class RESSDevotedVirgin extends App.Events.BaseEv
 			if (eventSlave.belly >= 5000) {
 				t.push(`${eventSlave.bellyPreg >= 3000 ? "gravid" : "rounded"}`);
 			}
-			t.push(`body against you and shivering with delight. ${He} shudders, almost uncontrollably, when you grind your ${PC.dick === 0 ? "clitoris" : "dick"} against ${his} moistened, wet pussy between ${his} thighs, taking extra care not to penetrate the willing slave. ${He} leaves your office feeling <span class="hotpink">very close to ${his} ${WrittenMaster()} indeed,</span> and seems to have forgotten ${his} unfucked vagina, for now.`);
+			t.push(`body against you and shivering with delight. ${He} shudders, almost uncontrollably, when you grind your ${PC.dick === 0 ? "clitoris" : "dick"} against ${his} moistened, wet pussy between ${his} thighs, taking extra care not to penetrate the willing slave. ${He} leaves your office feeling <span class="hotpink">very close to ${his} ${WrittenMaster(eventSlave)} indeed,</span> and seems to have forgotten ${his} unfucked vagina, for now.`);
 
 			eventSlave.devotion += 4;
 			return t;
diff --git a/src/events/RESS/imScared.js b/src/events/RESS/imScared.js
index 0277a821fd4c4a19f28d2c4b5c46bf0fbe7f488f..7d3b519fb8f947295aa938699a4f93aa1b109b52 100644
--- a/src/events/RESS/imScared.js
+++ b/src/events/RESS/imScared.js
@@ -111,7 +111,7 @@ App.Events.RESSImScared = class RESSImScared extends App.Events.BaseEvent {
 				t.push(`against your big ${PC.boobsImplant !== 0 ? "firm" : "soft"} breasts,`);
 			} else if (V.PC.boobs >= 300) {
 				t.push(`against your soft breasts,`);
-			} else if (V.PC.title == 0) {
+			} else if (V.PC.title === 0) {
 				t.push(`against your flat chest,`);
 			} else {
 				t.push(`into your shoulder,`);
@@ -156,7 +156,7 @@ App.Events.RESSImScared = class RESSImScared extends App.Events.BaseEvent {
 			} else {
 				t.push(`drained of ${his} milk, you tell ${eventSlave.slaveName} to pay close attention. ${He} ${watchListenFreezes} in horror as the slave's gigantic breasts are massaged and squeezed, while the milkers attached to ${his} absurd nipples tug and pull with industrial power. ${He} can't ${canSee(eventSlave) ? "look away; the orbs of jiggling flesh being manipulated are each as big as the slave's torso" : "shut out the sound of those enormous jiggling orbs of flesh being so roughly manipulated"}. It's good for milk production to drain slaves completely on occasion, and the machine doesn't stop until every drop is wrung from both udders.`);
 				if (!canSee(eventSlave)) {
-						t.push(`You force the horrified slave's ${hasBothArms(eventSlave) ? "hands" : "hand"} onto its breasts so that ${he} may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.`);
+					t.push(`You force the horrified slave's ${hasBothArms(eventSlave) ? "hands" : "hand"} onto its breasts so that ${he} may get a good sense of just how big and swollen they are and how hard the milker is pulling at them.`);
 				}
 				t.push(`You run a hand over to ${eventSlave.slaveName}'s own breast and, teasing ${his} nipple, tell ${him} that unless ${he} wants to experience that twice a day,`);
 			}
diff --git a/src/js/assayJS.js b/src/js/assayJS.js
index 5be576962ca5afce0b39732b498a65cd20d8935b..6e916b02d42606adbd52ab0f8adc1d6bde5c76ca 100644
--- a/src/js/assayJS.js
+++ b/src/js/assayJS.js
@@ -462,17 +462,12 @@ globalThis.getWrittenTitle = function(slave) {
 	}
 };
 
-/** Get the written title for a given slave, or for the most recently enunciated slave, write it into global state, and return it.
+/** Get the written title for a given slave, or for the active slave if none is provided.
  * @param {App.Entity.SlaveState} [slave]
  * @returns {string}
  */
 globalThis.WrittenMaster = function(slave) {
-	if (slave !== undefined) {
-		V.writtenTitle = getWrittenTitle(slave);
-	} else if (V.writtenTitle === undefined) {
-		V.writtenTitle = getWrittenTitle(V.activeSlave);
-	}
-	return V.writtenTitle;
+	return getWrittenTitle(slave || V.activeSlave);
 };
 
 /** Get all the enunciations used by a particular slave as a destructurable object.
@@ -659,7 +654,6 @@ globalThis.getEnunciation = function(slave) {
  */
 globalThis.Enunciate = function(slave) {
 	V.enunciate = getEnunciation(slave);
-	V.writtenTitle = getWrittenTitle(slave);
 };
 
 /**
diff --git a/src/npc/interaction/fKiss.tw b/src/npc/interaction/fKiss.tw
index c708b599c0b01f490dd1c1a72b12203340a52d19..bd543ae961a069b6038a3787df5ab5951d408915 100644
--- a/src/npc/interaction/fKiss.tw
+++ b/src/npc/interaction/fKiss.tw
@@ -92,7 +92,7 @@ You tell <<= getSlave($AS).slaveName>> to
 	<<if canSee(getSlave($AS))>>
 		into $his <<= App.Desc.eyesColor(getSlave($AS))>>. $He finds the intense attention from $his <<= WrittenMaster()>> disconcerting, and $he looks down after a moment, blushing.
 	<<else>>
-		upon $his face. $He finds the intense attention from $his <<= WrittenMaster()>>disconcerting, and $he looks down after a moment, blushing.
+		upon $his face. $He finds the intense attention from $his <<= WrittenMaster()>> disconcerting, and $he looks down after a moment, blushing.
 	<</if>>
 <<elseif (getSlave($AS).devotion > 20)>>
 	$He hurriedly complies, happy to be near you. Once $he's close, you take a moment to gaze deeply