diff --git a/src/interaction/sellSlave.js b/src/interaction/sellSlave.js
index 355891f78db5e785c7dd42070f255ac7510e49af..3ccbe1a31a6c8bdad5a2be439d480cd107f7844e 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 2a5a69a71383e6da68a7e42d2e6291086014e1b6..5663a1aa2d35788f91efeb4f91e087815bd0de3f 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();