diff --git a/src/facilities/nursery/childInteract.tw b/src/facilities/nursery/childInteract.tw
index bc3f32b019593fdd3ea8ceabe82c807cca66b640..6eb0fc885761a09a226ad4c9d354f84832cc3cff 100644
--- a/src/facilities/nursery/childInteract.tw
+++ b/src/facilities/nursery/childInteract.tw
@@ -60,7 +60,7 @@
 FIXME:
 <br><br>__Take slave to another room:__
 [[Wardrobe|Wardrobe Use][$degradation = 0]]
-| [[Auto salon|Salon][$degradation = 0, $primaryHairColor = "", $secondaryHairColor = "", $tattooChoice = "", $piercingLevel = ""]]
+| [[Auto salon|Salon][$degradation = 0, $tattooChoice = "", $piercingLevel = ""]]
 | [[Body mod studio|Body Modification][$degradation = 0, $tattooChoice = undefined]]
 | [[Remote surgery|Remote Surgery][$degradation = 0]]
 | [[Configure cybernetics|Prosthetics Configuration][$prostheticsConfig = "main"]]
diff --git a/src/interaction/prostheticConfig.tw b/src/interaction/prostheticConfig.tw
index 877537a1241c847647b2e84dc63f7c088cfd41fd..e44f47ea79b77bbb7ccabbac51730ea837bd952d 100644
--- a/src/interaction/prostheticConfig.tw
+++ b/src/interaction/prostheticConfig.tw
@@ -115,7 +115,7 @@ This room is lined with shelves and cabinets; it could be easily mistaken for a
 	</p>
 
 	<p class="indent">
-	$He has <<print App.Desc.eyesColor(getSlave($AS))>>. To change $his eye color visit the [[auto salon|Salon][$primaryHairColor = "", $secondaryHairColor = "", $primaryTailColor = "", $secondaryTailColor = ""]].
+	$He has <<print App.Desc.eyesColor(getSlave($AS))>>. To change $his eye color visit the [[auto salon|Salon][$primaryTailColor = "", $secondaryTailColor = ""]].
 	</p>
 <</if>>
 
diff --git a/src/interaction/slaveInteract.js b/src/interaction/slaveInteract.js
index 15a73929b24702786acbb54617ada31272a4a8c3..75a12c844b31d1effd1a13bf188f0b5728323a61 100644
--- a/src/interaction/slaveInteract.js
+++ b/src/interaction/slaveInteract.js
@@ -61,8 +61,6 @@ App.UI.SlaveInteract.modify = function(slave) {
 	makeRoomLink(el, "Auto salon", "Salon", ' Modify hair (color, length, style), nails, and even skin color.',
 		() => {
 			V.activeSlave = slave;
-			V.primaryHairColor = "";
-			V.secondaryHairColor = "";
 			V.primaryTailColor = "";
 			V.secondaryTailColor = "";
 		}