diff --git a/src/005-passages/interactPassages.js b/src/005-passages/interactPassages.js
index f462029f6084158d7eb11d8cc6d7630bd706b926..ad4143cd9536f8f827b21539dcdf9d35a9e4cc72 100644
--- a/src/005-passages/interactPassages.js
+++ b/src/005-passages/interactPassages.js
@@ -51,6 +51,6 @@ new App.DomPassage(
 			V.nextLink = "Main";
 			V.returnTo = "Incubator";
 		}
-		return bodySwapSelection(getSlave(V.AS));
+		return huskSwapSelection(getSlave(V.AS));
 	}
 );
diff --git a/src/npc/surgery/bodySwap/bodySwap.js b/src/npc/surgery/bodySwap/bodySwap.js
index 6ddecdcff2200e9f4c5b2754ed3eb345745e7b97..e2542c084a676f6711a6e81ec2aa23d09a0813c7 100644
--- a/src/npc/surgery/bodySwap/bodySwap.js
+++ b/src/npc/surgery/bodySwap/bodySwap.js
@@ -325,7 +325,7 @@ globalThis.bodySwapSelection = function(soul) {
 globalThis.huskSwapSelection = function(body) {
 	const el = new DocumentFragment();
 	const cost = 10000;
-	App.UI.DOM.appendNewElement("div", el, `"This operation is neither simple nor is it perfected. There are extreme health risks involved and no guarantee of success. Strap a slave into your remote surgery to consent to the operation. Indentured servants${(V.incubator > 0) || (V.nurseryChildren) ? `and slaves with reserved children`:``} are not eligible."
+	App.UI.DOM.appendNewElement("div", el, `"This operation is neither simple nor is it perfected. There are extreme health risks involved and no guarantee of success. Strap a slave into your remote surgery to consent to the operation. Indentured servants${(V.incubator > 0) || (V.nurseryChildren) ? ` and slaves with reserved children`:``} are not eligible."
 	`, "scene-intro");
 	App.UI.DOM.appendNewElement("div", el, `Select the slave whose mind will be transferred into the waiting husk. Amputated slaves must not be wearing prosthetics. This operation will cost ${cashFormat(cost)}.`);