From d33c1fc568f47faff7e1caf5ce283072f949baad Mon Sep 17 00:00:00 2001
From: Svornost <11434-svornost@users.noreply.gitgud.io>
Date: Mon, 8 Jul 2024 22:32:09 -0400
Subject: [PATCH] Fix a couple bad pronouns

---
 src/interaction/sellSlave.js  | 2 +-
 src/npc/descriptions/limbs.js | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/interaction/sellSlave.js b/src/interaction/sellSlave.js
index 355891f78db..3ccbe1a31a6 100644
--- a/src/interaction/sellSlave.js
+++ b/src/interaction/sellSlave.js
@@ -2805,7 +2805,7 @@ App.Interact.sellSlave = function(slave) {
 								} else if (!hasAnyLimbs(slave)) {
 									r.push(`lying helplessly`);
 									if (!canSee(slave)) {
-										r.push(`unable to see what's going around ${her}`);
+										r.push(`unable to see what's going around ${him}`);
 									}
 								} else {
 									r.push(`tied to a table`);
diff --git a/src/npc/descriptions/limbs.js b/src/npc/descriptions/limbs.js
index 2a5a69a7138..5663a1aa2d3 100644
--- a/src/npc/descriptions/limbs.js
+++ b/src/npc/descriptions/limbs.js
@@ -38,15 +38,14 @@ App.Medicine.Limbs.currentLimbs = function(slave) {
  * @returns {HTMLSpanElement|DocumentFragment}
  */
 App.Medicine.Limbs.selector = function(slave, oldLimbs) {
-	const {her} = getPronouns(slave);
+	const {his} = getPronouns(slave);
 	if (hasAllNaturalLimbs(slave)) {
-		return App.UI.DOM.makeElement("span", `You must amputate ${her} limbs before you can attach prosthetics.`, ["detail"]);
+		return App.UI.DOM.makeElement("span", `You must amputate ${his} limbs before you can attach prosthetics.`, ["detail"]);
 	}
 	if (slave.PLimb < 1) {
 		return App.UI.DOM.makeElement("span", `You must surgically install a prosthetic interface before you can attach prosthetics.`, ["detail"]);
 	}
 
-	const {his} = getPronouns(slave);
 	const newState = currentState(slave);
 
 	const f = document.createDocumentFragment();
-- 
GitLab