diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index eca94478351b23796da893f2e5cd88d66b555018..d739ebe89f9cca988355348c3aab0b4b85fa1350 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -1715,7 +1715,7 @@
 <<set $one_time_age_overrides_pedo_mode = 1>>
 <<set $oneTimeDisableDisability = 1>>
 <<set $activeSlave = GenerateNewSlave("XX")>>
-<<run attachLimbs($activeSlave, "all", 2)>>
+<<run attachLimbs($activeSlave, "all", 2), addProsthetic($activeSlave, "basicL"), $activeSlave.PLimb = 1>>
 <<set $activeSlave.origin = "You helped free $him from a POW camp after being abandoned by $his country, leaving $him deeply indebted to you.">>
 <<set $activeSlave.devotion = random(0,20)>>
 <<set $activeSlave.trust = random(0,20)>>
@@ -1793,7 +1793,7 @@
 <<set $activeSlave.weight = random(-11 -30)>>
 <<set $activeSlave.waist = random(-11, -40)>>
 <<set $activeSlave.skill.combat = 1>>
-<<run attachLimbs($activeSlave, "all", 6)>>
+<<run attachLimbs($activeSlave, "all", 6), addProsthetic($activeSlave, "cyberneticL"), $activeSlave.PLimb = 2>>
 <<set $activeSlave.teeth = "pointy">>
 <<set $activeSlave.muscles = random(30,70)>>
 <<set $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]}))>>
@@ -2406,7 +2406,7 @@ While digging through the database of a POW camp for anything of value, you find
 <<if $seeExtreme == 1>>
 	the traces of $his wounds, that $he has been greatly modified for war, and that $he had been raped, repeatedly, despite $his powerful body.
 	<<set $activeSlave.teeth = "pointy", $activeSlave.muscles = random(30,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.chem = 1000, $activeSlave.attrXX = 0, $activeSlave.attrXY = 0>>
-	<<run attachLimbs($activeSlave, "all", 6)>>
+	<<run attachLimbs($activeSlave, "all", 6), addProsthetic($activeSlave, "cyberneticL"), $activeSlave.PLimb = 2>>
 <<else>>
 	the traces of $his wounds, that $he had been left bound long enough for $his body to atrophy, and that $he had been raped, repeatedly.
 <</if>>
diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index da88fcf7a380c0b5a66882afdf75d49b519aa402..574e787bdfceb2844d7ef08a68a28ef5ff57a6fd 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -802,7 +802,7 @@
 		<<case "Bodyguard">>
 			<<set $activeSlave.devotion = 90, $activeSlave.muscles = random(30,70), $activeSlave.height = Math.round(Height.random($activeSlave, {skew: 3, spread: .2, limitMult: [1, 4]})), $activeSlave.weight = random(-10,10), $activeSlave.teeth = either("normal", "pointy"), $activeSlave.skill.combat = 1>>
 			<<if jsRandom(0, 2) === 0>>
-				<<run attachLimbs($activeSlave, "all", 5)>>
+				<<run attachLimbs($activeSlave, "all", 5), addProsthetic($activeSlave, "combatL"), $activeSlave.PLimb = 1>>
 			<</if>>
 			<<set $activeSlave.career = either("a bodyguard", "a kunoichi", "a law enforcement officer", "a military brat", "a revolutionary", "a soldier", "a transporter", "an assassin", "in a militia")>>
 		<<case "Wardeness">>