diff --git a/src/npc/descriptions/sceneIntro.js b/src/npc/descriptions/sceneIntro.js
index 2658cd9f3f6349fc7adf4f422d909339236e824a..290d6fa24ac67e2f1a5a27252287907a31da09a8 100644
--- a/src/npc/descriptions/sceneIntro.js
+++ b/src/npc/descriptions/sceneIntro.js
@@ -5,7 +5,7 @@
 App.Desc.sceneIntro = function(slave) {
 	const r = [];
 	const {
-		he, him, his, He, His, himself
+		he, him, his, He, His, himself, wife
 	} = getPronouns(slave);
 
 	if (V.eventDescription === 1) {
@@ -13,7 +13,7 @@ App.Desc.sceneIntro = function(slave) {
 		if (slave.assignment === "be a subordinate slave") {
 			let lsd = V.slaveIndices[slave.subTarget];
 			if (lsd) {
-				r.push(`${He} has been ordered to serve <span class="slave-name-simple">${SlaveFullName(V.slaves[_lsd])}</span> specifically.`);
+				r.push(`${He} has been ordered to serve <span class="slave-name-simple">${SlaveFullName(V.slaves[lsd])}</span> specifically.`);
 			}
 		}
 	} else if (V.ui !== "start" && V.saleDescription !== 1) {
@@ -242,7 +242,7 @@ App.Desc.sceneIntro = function(slave) {
 					}
 					r.push(`their passionate relationship.`);
 				} else if (V.slaves[lsd].relationship > 4) {
-					r.push(`<span style="font-weight:bold" class="relationship">${SlaveFullName(V.slaves[lsd])}'s slave ${V.wife};</span> the rules`);
+					r.push(`<span style="font-weight:bold" class="relationship">${SlaveFullName(V.slaves[lsd])}'s slave ${wife};</span> the rules`);
 					if (slave.rules.relationship === "permissive") {
 						r.push(`encourage`);
 					} else {
@@ -282,7 +282,7 @@ App.Desc.sceneIntro = function(slave) {
 		} else if (slave.relationship >= 4) {
 			r.push(`${He} has ${his} own room, which ${he} shares with ${his}`);
 			if (slave.relationship === 5) {
-				r.push(getPronouns(slave).wife);
+				r.push(wife);
 			} else {
 				r.push(`${getPronouns(slave).girl}friend`);
 			}