diff --git a/src/facilities/masterSuite/masterSuiteFramework.js b/src/facilities/masterSuite/masterSuiteFramework.js
index d554315242c8d265e2e46c0f1757a5dc76ff8080..cb179cf657930d352c5c983705453500aad504bb 100644
--- a/src/facilities/masterSuite/masterSuiteFramework.js
+++ b/src/facilities/masterSuite/masterSuiteFramework.js
@@ -50,8 +50,8 @@ App.Entity.Facilities.MasterSuiteFuckToyJob = class extends App.Entity.Facilitie
 App.Entity.Facilities.ConcubineJob = class extends App.Entity.Facilities.ManagingJob {
 	canEmploy(slave) {
 		let r = super.canEmploy(slave);
-		if (slave.missingArms === 3) {
-			r.push(`${slave.slaveName} can't serve as your Concubine without arms.`);
+		if (slave.amp === 1) {
+			r.push(`${slave.slaveName} can't serve as your Concubine without limbs.`);
 		}
 		return r;
 	}
diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js
index 32725b928c6681da7ce3fcfb97ace960505f5de2..59926dd829bd8e8366663bc04827901214c75ee9 100644
--- a/src/js/eventSelectionJS.js
+++ b/src/js/eventSelectionJS.js
@@ -1632,8 +1632,10 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 				if (eventSlave.anus > 2) {
 					if (eventSlave.fetish === "buttslut" || eventSlave.energy > 95) {
 						if (eventSlave.fetish !== "none") {
-							if (canDoAnal(eventSlave)) {
-								State.variables.RESSevent.push("loose buttslut");
+							if (canHold(eventSlave)) {
+								if (canDoAnal(eventSlave)) {
+									State.variables.RESSevent.push("loose buttslut");
+								}
 							}
 						}
 					}
@@ -2840,8 +2842,10 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 				if (eventSlave.anus > 2) {
 					if (eventSlave.fetish === "buttslut" || eventSlave.energy > 95) {
 						if (eventSlave.fetish !== "none") {
-							if (canDoAnal(eventSlave)) {
-								State.variables.RESSevent.push("loose buttslut");
+							if (canHold(eventSlave)) {
+								if (canDoAnal(eventSlave)) {
+									State.variables.RESSevent.push("loose buttslut");
+								}
 							}
 						}
 					}
diff --git a/src/npc/descriptions/boobs/boobs.js b/src/npc/descriptions/boobs/boobs.js
index f25b278f9bc91581be2e95a03b51a188e393c650..af9a38c3e833bd40dd2e5c7f0913aa3786783e2c 100644
--- a/src/npc/descriptions/boobs/boobs.js
+++ b/src/npc/descriptions/boobs/boobs.js
@@ -483,7 +483,14 @@ App.Desc.boobs = function() {
 				}
 				break;
 			case "a chattel habit":
-				r += `${slave.slaveName}'s chattel habit's scapular covers ${his} shoulders and arms, but is open in front, leaving ${his} `;
+				r += `${slave.slaveName}'s chattel habit's scapular covers ${his} shoulders`;
+				if (slave.missingArms !== 3) {
+					r += ` and arm`;
+					if (slave.missingArms === 0) {	
+						r += `s`;
+					}
+				}
+				r += `, but is open in front, leaving ${his} `;
 				if (slave.boobs > 4000) {
 					r += `${noun} completely bare. It tucks into a golden belt, though this is buried under ${his} breasts.`;
 				} else if (slave.boobs > 300) {
@@ -944,22 +951,22 @@ App.Desc.boobs = function() {
 									r += ' "Reach Around" ';
 									break;
 								case "boobs":
-									r += " Your Hands Here";
+									r += ' "Your Hands Here" ';
 									break;
 								case "sadist":
-									r += " Taste the Pain";
+									r += ' "Taste The Pain" ';
 									break;
 								case "masochist":
-									r += " Be Rough";
+									r += ' "Be Rough" ';
 									break;
 								case "dom":
-									r += " Queen Bitch";
+									r += ' "Queen Bitch" ';
 									break;
 								case "pregnancy":
-									r += " Milk Me";
+									r += ' "Milk Me" ';
 									break;
 								case "mindbroken":
-									r += " Free Slut";
+									r += ' "Free Slut" ';
 									break;
 								default:
 									r += ` ${App.Desc.inscrip(slave)} `;
@@ -1379,17 +1386,37 @@ App.Desc.boobsExtra = function(slave, pronouns) {
 	 * @returns {string}
 	 */
 	function walkingRestrictions(dairyTest) {
+		let r += '';
 		if (slave.muscles > 95) {
-			return `However, ${he} is so powerfully built that ${he} can manage it with effort, using ${his} arms to support them.`;
+			r += `However, ${he} is so powerfully built that ${he} can manage it with effort, using ${his} `;
+			if (slave.missingArms === 0) {
+				r += `arms`;
+			} else if (slave.missingArms === 3) {
+				r += `powerful back muscles`;
+			} else {
+				r += `arm`;
+			}
+			r += ` to support them.`;
 		} else if (slave.muscles > 30) {
-			return `${He} can barely manage to get to ${his} feet unaided, and usually walks with ${his} arms crossed under ${his} tits to help take their weight.`;
+			r += `${He} can barely manage to get to ${his} feet unaided, and usually walks `;
+			if (slave.missingArms === 3) {
+				r += `greatly hunched over to help take the weight of ${his} tits.`;
+			} else {			
+				if (slave.missingArms === 0) {
+					r += `with ${his} arms crossed under ${his} tits`;				
+				} else {
+					r += `with ${his} arm placed under ${his} tits`;
+				}
+				r += ` to help take their weight.`;
+			}
 		} else if (slave.muscles > 5) {
-			return `${He} requires assistance to get to ${his} feet, and uses a stand to support them when ${he} must remain upright for more than a short time.`;
+			r += `${He} requires assistance to get to ${his} feet, and uses a stand to support them when ${he} must remain upright for more than a short time.`;
 		} else if ((slave.assignment === App.Data.Facilities.dairy.jobs.cow.assignment) && (V.dairyRestraintsSetting > 1) && (dairyTest(slave))) {
-			return `The straps that secure ${him} to the milking machine have become less necessary since ${his} breasts grew to the point where they pin ${him} to it.`;
+			r += `The straps that secure ${him} to the milking machine have become less necessary since ${his} breasts grew to the point where they pin ${him} to it.`;
 		} else {
-			return `${He} cannot get to ${his} feet unaided, and uses a wheeled stand to support ${his} boobs when ${he} must walk or remain upright.`;
+			r += `${He} cannot get to ${his} feet unaided, and uses a wheeled stand to support ${his} boobs when ${he} must walk or remain upright.`;
 		}
+		return r;
 	}
 
 	/**
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 1e2de67f9b25004486e5f0839b103a2415fb36ad..1f7491a056f9a7f38d820a758033f16b97c34add 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -662,7 +662,7 @@ Slaves with powerful sex drives like $hers often find it necessary to masturbate
 $desc
 is terrified of you for some reason.
 <br><br>
-You let $him stand there naked and shivering while you finish what you're working on. $He holds $his $activeSlave.skin hands down at $his sides, just like $he's supposed to, but they twitch inward occasionally, betraying $his desire to shield $his
+You let $him stand there naked and shivering while you finish what you're working on. $He holds $his $activeSlave.skin <<if $activeSlave.missingArms == 0>>hands down at $his sides, just like $he's supposed to, but they twitch<<else>>hand down at $his side, just like $he's supposed to, but it twitches<</if>> inward occasionally, betraying $his desire to shield $his
 <<if ($activeSlave.nipples == "huge")>>
 	prominent nipples
 <<elseif ($activeSlave.boobs > 1000)>>
@@ -1056,25 +1056,25 @@ Late at night, <<EventNameLink>> returns to the living area of the penthouse. It
 <<else>>
 	squats on it,
 <</if>>
-moaning happily as the massive thing inches into $him. $He starts to slide up and down it hands-free, so $he
+moaning happily as the massive thing inches into $him. $He starts to slide up and down it <<if $activeSlave.missingArms != 3>>hands-free<<else>>automatically<</if>>, so $he
 <<if canAchieveErection($activeSlave)>>
 	<<if $activeSlave.dick > 5>>
-		jacks off $his huge cock with both hands.
+		jacks off $his huge cock with <<if $activeSlave.missingArms == 0>>both hands<<else>>$his hand<</if>>.
 	<<elseif $activeSlave.dick > 2>>
-		jacks off with one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other.
+		jacks off with <<if $activeSlave.missingArms != 0>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
 	<<elseif $activeSlave.dick > 0>>
-		rubs $his little penis with one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other.
+		rubs $his little penis with <<if $activeSlave.missingArms != 0>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
 	<</if>>
 <<elseif $activeSlave.dick > 5>>
-	massages $his huge, limp cock with both hands.
+	massages $his huge, limp cock with <<if $activeSlave.missingArms == 0>>both hands<<else>>$his hand<</if>>.
 <<elseif $activeSlave.dick > 2>>
-	attempts to jack off $his limp dick with one hand while <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple with the other.
+	attempts to jack off $his limp dick with <<if $activeSlave.missingArms != 0>>$his hand<<else>>one hand while <<if $activeSlave.nipples != "fuckable">>pinching<<else>>fingering<</if>> a nipple with the other<</if>>.
 <<elseif $activeSlave.dick > 0>>
-	rubs $his little penis with one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other.
+	rubs $his little penis with <<if $activeSlave.missingArms != 0>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
 <<elseif $activeSlave.vagina == -1>>
-	rubs the sensitive area around $his asspussy with one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other.
+	rubs the sensitive area around $his asspussy with <<if $activeSlave.missingArms != 0>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
 <<else>>
-	rubs $his clit with one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other.
+	rubs $his clit with <<if $activeSlave.missingArms != 0>>$his hand<<else>>one hand and <<if $activeSlave.nipples != "fuckable">>pinches<<else>>fingers<</if>> a nipple with the other<</if>>.
 <</if>>
 As $he enjoys $himself, $his loose sphincter relaxes still further until it's barely gripping the dildo.
 
@@ -8366,9 +8366,9 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 			<<case "imp">>
 				mischievous voice of your assistant's avatar can also be heard, mocking $activeSlave.slaveName, "your butthole is going to be so loose after this! You'll be nothing more than a used up whore!"
 			<<case "witch">>
-				uncertain voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName, "just relax and get it over with."
+				uncertain voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "just relax and get it over with."
 			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-				unclear voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName, "scream louder and let it fill your body completely."
+				unclear voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "scream louder and let it fill your body completely."
 			<<case "schoolgirl">>
 				girly voice of your assistant's avatar can also be heard, encouraging $activeSlave.slaveName to "be quiet, or Teacher will hear us."
 			<<default>>
diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw
index 91fdb640c3675cadfd0868e48d143caa0b5b4f4d..3333ddb3e43877d8b40733a29ed09e4b499bf19c 100644
--- a/src/uncategorized/newSlaveIntro.tw
+++ b/src/uncategorized/newSlaveIntro.tw
@@ -1477,7 +1477,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 				<<if $activeSlave.amp == 1>>
 					You secure $his struggling, screeching body to the couch next to your desk with $his vagina exposed.
 				<<else>>
-					You cuff $his <<if $activeSlave.missingArms != 3>>wrist<<if $activeSlave.missingArms != 0>>s<</if>><<if $activeSlave.missingLegs != 3>> and <</if>><</if>><<if $activeSlave.missingLegs != 3>>ankle<<if $activeSlave.missingLegs != 0>>s<</if>><</if>> and secure $his struggling, screeching body to the couch next to your desk with $his legs spread.
+					You cuff $his <<if $activeSlave.missingArms != 3>>wrist<<if $activeSlave.missingArms == 0>>s<</if>><<if $activeSlave.missingLegs != 3>> and <</if>><</if>><<if $activeSlave.missingLegs != 3>>ankle<<if $activeSlave.missingLegs == 0>>s<</if>><</if>> and secure $his struggling, screeching body to the couch next to your desk with $his legs spread.
 				<</if>>
 				$He wriggles and protests as you take $his virginity. $He's certainly entered your service in a way that colors $his impression of you @@.mediumorchid;with hatred@@ and @@.gold;fear.@@ @@.lime;$His tight little pussy has been broken in.@@
 				<<set $activeSlave.devotion -= 5>>
@@ -1503,7 +1503,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			<<if $activeSlave.amp == 1>>
 				You secure $his struggling, screeching body to the couch next to your desk with $his butt sticking out.
 			<<else>>
-				You cuff $his <<if $activeSlave.missingArms != 3>>wrist<<if $activeSlave.missingArms != 0>>s<</if>><<if $activeSlave.missingLegs != 3>> and <</if>><</if>><<if $activeSlave.missingLegs != 3>>ankle<<if $activeSlave.missingLegs != 0>>s<</if>><</if>> and secure $his struggling, screeching body to the couch next to your desk so that $he's straddling the back of the couch with $his butt sticking out.
+				You cuff $his <<if $activeSlave.missingArms != 3>>wrist<<if $activeSlave.missingArms == 0>>s<</if>><<if $activeSlave.missingLegs != 3>> and <</if>><</if>><<if $activeSlave.missingLegs != 3>>ankle<<if $activeSlave.missingLegs == 0>>s<</if>><</if>> and secure $his struggling, screeching body to the couch next to your desk so that $he's straddling the back of the couch with $his butt sticking out.
 			<</if>>
 			$He wriggles and protests until $he feels the lubricated head of <<if $PC.dick == 1>>your dick<<else>>a strap-on<</if>> pushing against $his virgin butthole, at which point $he desperately tries to break free. $He fails, but $he never stops writhing and begging you to take <<if $PC.dick == 1>>your cock<<else>>the phallus<</if>> out of $his asshole. $He's certainly entered your service in a way that colors $his impression of you @@.mediumorchid;with hatred@@ and @@.gold;fear.@@ @@.lime;$His tight little ass has been broken in.@@
 		<</replace>>
@@ -1889,7 +1889,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<link "Use a machine on $his holes">>
 			<<replace "#introResult">>
-				$He's not a virgin anywhere, so you'll have to go more extreme to provide a properly introductory level of sexual torture equivalent to defloration. You tie your new slave down on hands and knees and bring a fuckmachine up from storage. It fits over $him as $he whimpers down there on all fours, and you adjust the pistons so that the tip of a dildo rests inside each of $his holes. You add lube when necessary, <<if $assistant == 0>>but the rest of the day is monotonous machine rape for $him.<<else>>but for $him the rest of the day is machine rape controlled by your sultry-voiced personal assistant program. Your assistant is an exquisite sexual torturer, ensuring that the experience is never damaging and always overwhelming. $He keeps up a steady stream of degrading verbal abuse while $he works.<</if>> Any resistance to you is @@.mediumorchid;worn down@@ and replaced with a germ of @@.gold;fear.@@ @@.lime;The slave's holes are nicely stretched.@@
+				$He's not a virgin anywhere, so you'll have to go more extreme to provide a properly introductory level of sexual torture equivalent to defloration. You tie your new slave down on <<if $activeSlave.missingArms != 3>>hand<<if $activeSlave.missingArms == 0>>s<</if>><<if $activeSlave.missingLegs != 3>> and <</if>><</if>><<if $activeSlave.missingLegs != 3>>knee<<if $activeSlave.missingLegs == 0>>s<</if>><</if>> and bring a fuckmachine up from storage. It fits over $him as $he whimpers down there on all fours, and you adjust the pistons so that the tip of a dildo rests inside each of $his holes. You add lube when necessary, <<if $assistant == 0>>but the rest of the day is monotonous machine rape for $him.<<else>>but for $him the rest of the day is machine rape controlled by your sultry-voiced personal assistant program. Your assistant is an exquisite sexual torturer, ensuring that the experience is never damaging and always overwhelming. $He keeps up a steady stream of degrading verbal abuse while $he works.<</if>> Any resistance to you is @@.mediumorchid;worn down@@ and replaced with a germ of @@.gold;fear.@@ @@.lime;The slave's holes are nicely stretched.@@
 			<<set $activeSlave.devotion -= 5>>
 			<<set $activeSlave.trust -= 10>>
 			<<set $activeSlave.counter.vaginal += 1>>
@@ -1904,7 +1904,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<link "Use a machine on $his asshole">>
 			<<replace "#introResult">>
-				$He's not an anal virgin, so you'll have to go more extreme to provide an introductory level of sexual torture equivalent to defloration. You tie your new slave down on hands and knees and bring a fuckmachine up from storage. It fits over $him as $he whimpers down there on all fours, and you adjust the pistons so that the tip of a dildo rests inside $his asshole. You add lube when necessary, <<if $assistant == 0>>but the rest of the day is monotonous machine rape for $him.<<else>>but for $him the rest of the day is machine rape controlled by your sultry-voiced personal assistant program. Your assistant is an exquisite sexual torturer, ensuring that the experience is never damaging and always overwhelming. $He keeps up a steady stream of degrading verbal abuse while $he works.<</if>> Any resistance to you is @@.mediumorchid;worn down@@ and replaced with a germ of @@.gold;fear.@@ @@.lime;The slave's asshole is nicely stretched.@@ /*Written and coded by Boney M*/
+				$He's not an anal virgin, so you'll have to go more extreme to provide an introductory level of sexual torture equivalent to defloration. You tie your new slave down on <<if $activeSlave.missingArms != 3>>hand<<if $activeSlave.missingArms == 0>>s<</if>><<if $activeSlave.missingLegs != 3>> and <</if>><</if>><<if $activeSlave.missingLegs != 3>>knee<<if $activeSlave.missingLegs == 0>>s<</if>><</if>> and bring a fuckmachine up from storage. It fits over $him as $he whimpers down there on all fours, and you adjust the pistons so that the tip of a dildo rests inside $his asshole. You add lube when necessary, <<if $assistant == 0>>but the rest of the day is monotonous machine rape for $him.<<else>>but for $him the rest of the day is machine rape controlled by your sultry-voiced personal assistant program. Your assistant is an exquisite sexual torturer, ensuring that the experience is never damaging and always overwhelming. $He keeps up a steady stream of degrading verbal abuse while $he works.<</if>> Any resistance to you is @@.mediumorchid;worn down@@ and replaced with a germ of @@.gold;fear.@@ @@.lime;The slave's asshole is nicely stretched.@@ /*Written and coded by Boney M*/
 			<<set $activeSlave.devotion -= 5>>
 			<<set $activeSlave.trust -= 10>>
 			<<set $activeSlave.counter.anal += 1>>
@@ -1920,7 +1920,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<link "Make $him an office ornament for the day">>
 		<<replace "#introResult">>
-			You cuff $his <<if $activeSlave.missingArms != 3>>wrist<<if $activeSlave.missingArms != 0>>s<</if>><<if $activeSlave.missingLegs != 3>> and <</if>><</if>><<if $activeSlave.missingLegs != 3>>ankle<<if $activeSlave.missingLegs != 0>>s<</if>><</if>>, bend
+			You cuff $his <<if $activeSlave.missingArms != 3>>wrist<<if $activeSlave.missingArms == 0>>s<</if>><<if $activeSlave.missingLegs != 3>> and <</if>><</if>><<if $activeSlave.missingLegs != 3>>ankle<<if $activeSlave.missingLegs == 0>>s<</if>><</if>>, bend
 			<<if ($activeSlave.missingArms == 0 && $activeSlave.missingLegs == 0)>>
 				all four limbs
 			<<elseif (($activeSlave.missingArms == 0 && $activeSlave.missingLegs != 3) || ($activeSlave.missingArms != 3 && $activeSlave.missingLegs == 0))>>
diff --git a/src/uncategorized/peConcubineInterview.tw b/src/uncategorized/peConcubineInterview.tw
index 33579c9c83e1bbd3410958119b932b1ebe03434b..5fc0d463e811d67ea00c9ed3a226396daf1e8d0b 100644
--- a/src/uncategorized/peConcubineInterview.tw
+++ b/src/uncategorized/peConcubineInterview.tw
@@ -125,9 +125,9 @@ You receive an official communication from a popular talk show e-hosted in one o
 		"Now I'm sure our viewers are wondering," he says, patting the firm dome. "Is it <<= PlayerName()>>'s?"
 		<<if $activeSlave.pregSource == -1>>
 			<<if $activeSlave.bellyPreg >= 450000>>
-				"Of cour<<s>>e they are!" $He proclaims proudly as $he runs $his hands across $his quivering mass. "All $activeSlave.pregType of them!"
+				"Of cour<<s>>e they are!" $he proclaims proudly as $he <<if $activeSlave.missingArms != 3>>runs $his hand<<if $activeSlave.missingArms == 0>>s<</if>> across<<else>>stretches out to show off<</if>> $his quivering mass. "All $activeSlave.pregType of them!"
 			<<elseif $activeSlave.bellyPreg >= 100000>>
-				"Of cour<<s>>e they are!" $He proclaims proudly as $he runs $his hands across $his belly. "All $activeSlave.pregType of them!"
+				"Of cour<<s>>e they are!" $he proclaims proudly as $he <<if $activeSlave.missingArms != 3>>runs $his hand<<if $activeSlave.missingArms == 0>>s<</if>> across<<else>>stretches out to show off<</if>> $his belly. "All $activeSlave.pregType of them!"
 			<<elseif $activeSlave.bellyImplant >= 1500>>
 				"It'<<s>> fake. Pretty hard to tell though, i<<s>>n't it?"
 			<<elseif $activeSlave.bellyPreg >= 1500>>
@@ -147,7 +147,12 @@ You receive an official communication from a popular talk show e-hosted in one o
 			<<elseif $activeSlave.bellyImplant > -1>>
 				"It'<<s>> fake. Pretty hard to tell though, i<<s>>n't it?"
 			<<else>>
-				Of cour<<s>>e it i<<s>>!"
+				Of cour<<s>>e
+				<<if $activeSlave.pregType > 1>>
+					they are!"
+				<<else>>
+					it i<<s>>!"
+				<</if>>
 			<</if>>
 		<<else>>
 			"That'<<s>> for me and my <<Master>> only," $he teases, sticking out $his tongue.
diff --git a/src/uncategorized/reRelationshipAdvice.tw b/src/uncategorized/reRelationshipAdvice.tw
index a3505eb4995057532dc17893b3572173ad38b8b6..5f48aafbd30f40d9173348182992ff86f626280c 100644
--- a/src/uncategorized/reRelationshipAdvice.tw
+++ b/src/uncategorized/reRelationshipAdvice.tw
@@ -112,11 +112,11 @@ $He nods $his head quickly, still staring at $his feet. $He shuts $his eyes tigh
 		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "dom")>>
 			to be your top." $subSlave.slaveName looks relieved that that's all it is, and <<if ($subSlave.voice != 0)>>says, "Okay!"<<else>>nods.<</if>> _He2 sidles up to $activeSlave.slaveName, looking up at $him submissively.
 		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "submissive")>>
-			to be your bottom." $subSlave.slaveName looks relieved that that's all it is, and says, <<if ($subSlave.voice != 0)>>says, "Okay!"<<else>>nods.<</if>> _He2 takes $activeSlave.slaveName's face in _his2 hands and kisses $him dominantly.
+			to be your bottom." $subSlave.slaveName looks relieved that that's all it is, and says, <<if ($subSlave.voice != 0)>>says, "Okay!"<<else>>nods.<</if>> _He2 takes $activeSlave.slaveName's face in _his2 hand<<if $subSlave.missingArms == 0>>s<</if>> and kisses $him dominantly.
 		<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetish == "boobs")>>
-			to fuck your boob<<s>>." $subSlave.slaveName looks relieved that that's all it is, and says, <<if ($subSlave.voice != 0)>>says, "Okay!"<<else>>nods.<</if>> _He2 takes $activeSlave.slaveName's hands and places them right on _his2 breasts.
+			to fuck your boob<<s>>." $subSlave.slaveName looks relieved that that's all it is, and says, <<if ($subSlave.voice != 0)>>says, "Okay!"<<else>>nods.<</if>> _He2 takes $activeSlave.slaveName's <<if $activeSlave.missingArms == 0>>hands and places them<<else>>hand and places it<</if>> right on _his2 breasts.
 		<<else>>
-			to fuck you." $subSlave.slaveName looks relieved that that's all it is, and <<if ($subSlave.voice != 0)>>says, "Okay!"<<else>>nods.<</if>> _He2 takes $activeSlave.slaveName's hands and places them right on _his2 breasts.
+			to fuck you." $subSlave.slaveName looks relieved that that's all it is, and <<if ($subSlave.voice != 0)>>says, "Okay!"<<else>>nods.<</if>> _He2 takes $activeSlave.slaveName's <<if $activeSlave.missingArms == 0>>hands and places them<<else>>hand and places it<</if>> right on _his2 breasts.
 		<</if>>
 		$activeSlave.slaveName bursts out laughing. They're now @@.lightgreen;friends with benefits.@@
 	<<elseif $activeSlave.relationship == 3>>
diff --git a/src/uncategorized/reStandardPunishment.tw b/src/uncategorized/reStandardPunishment.tw
index f832346edd2eeff49515e76d0bb23bbc8a35ef59..52bd9a318bc7aea3aa9ae8981179fbf7070d09cb 100644
--- a/src/uncategorized/reStandardPunishment.tw
+++ b/src/uncategorized/reStandardPunishment.tw
@@ -154,7 +154,7 @@
 <<link "Restrain $him in your office">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since you use chastity as a punishment, you're accustomed to using your office for supervising sexual denial. You bring $him up and restrain $his standing, hands over $his head in one of the sets of shackles set high on the walls, facing out so $he can see everything that goes on in your office. You gag $him securely, <<if $activeSlave.voice == 0>>despite $his muteness, a sad mockery<<else>>not wanting your work disturbed by unseemly noises<</if>>. Then you ignore $him. Business as usual in your office is profoundly sexual.
+	Since you use chastity as a punishment, you're accustomed to using your office for supervising sexual denial. You bring $him up and restrain $him standing, hand<<if $activeSlave.missingArms == 0>>s<</if>> over $his head in one of the sets of shackles set high on the walls, facing out so $he can <<if canSee($activeSlave)>>see<<else>>face<</if>> everything that goes on in your office. You gag $him securely, <<if $activeSlave.voice == 0>>despite $his muteness, a sad mockery<<else>>not wanting your work disturbed by unseemly noises<</if>>. Then you ignore $him. Business as usual in your office is profoundly sexual.
 	<<if $activeSlave.energy > 60>>
 		$His healthy sex drive makes this torture for $him; $he watches everything that happens in the office with desperate longing. Before long,
 	<<elseif $activeSlave.devotion > 20>>
@@ -185,7 +185,7 @@
 <br><<link "Torment $him with vibration">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Since you use chastity as a punishment, you're accustomed to using your office for supervising sexual denial. You order $him to place $his hands in one of the many sets of restraints set high up on the office walls for the purpose.
+	Since you use chastity as a punishment, you're accustomed to using your office for supervising sexual denial. You order $him to place $his hand<<if $activeSlave.missingArms == 0>>s<</if>> in one of the many sets of restraints set high up on the office walls for the purpose.
 	<<if $activeSlave.clitPiercing != 3>>
 		You equip $him with a set of smart vibrators. The first is attached <<if $activeSlave.dick > 0>>to $his dickhead<<else>>against $his clit<</if>>,
 	<<else>>
diff --git a/src/uncategorized/saDiet.tw b/src/uncategorized/saDiet.tw
index 1dc13879685f3e1610f94c951699862029ba38b2..bbc12c6d0dc016eb2329e2ab5f19084739d2bbe2 100644
--- a/src/uncategorized/saDiet.tw
+++ b/src/uncategorized/saDiet.tw
@@ -854,7 +854,7 @@
 		$His diet tastes and smells awful, but $he is incapable of recognizing it, allowing $him to feel nothing but its @@.green;significant restorative effect.@@
 		<<set $slaves[$i].trust++>>
 	<<elseif !canSmell($slaves[$i]) || !canTaste($slaves[$i])>>
-		$His diet @@.mediumorchid;tastes and smells awful@@, but $he is thankfully only partially aware of this, allowing $him to appreciate its @@.green;significant restorative effect@@ a bit more.
+		$His diet @@.mediumorchid;tastes and smells awful,@@ but $he is thankfully only partially aware of this, allowing $him to appreciate its @@.green;significant restorative effect@@ a bit more.
 		<<set $slaves[$i].devotion -= 1, $slaves[$i].trust++>>
 	<<elseif $slaves[$i].sexualFlaw == "self hating">>
 		$His diet @@.hotpink;tastes and smells awful,@@ the perfect meal for such a wretched creature as $himself. $He knows you are @@.green;preserving $his health@@ but doesn't understand why you'd waste time and credits on $him.
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 97d01c2580635a091234ee8b3978baf8e715a65d..a0cc7abe4ed94a7eb37f95434d6d2b28af0c865d 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -355,7 +355,7 @@
 							$He can't see a woman without doing $his best to find a way the rules will allow $him to abuse the poor girl. $He's now @@.green;more aroused by women.@@
 							<<set $slaves[$i].attrXX += 3>>
 						<<elseif ($slaves[$i].fetish == "boobs")>>
-							$He can't see a woman without doing $his best to get $his hands on her breasts. $He's now @@.green;more aroused by women.@@
+							$He can't see a woman without doing $his best to get $his <<if ($slaves[$i].missingArms == 3)>>face between<<else>>hand<<if ($slaves[$i].missingArms == 0)>>s<</if>> on<</if>> her breasts. $He's now @@.green;more aroused by women.@@
 							<<set $slaves[$i].attrXX += 3>>
 						<<elseif $slaves[$i].fetish == "pregnancy" && canAchieveErection($slaves[$i])>>
 							$He can't see a woman without plotting to plant $his seed in her womb. $He's now @@.green;more aroused by women.@@
diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw
index 1109c57b3f5f7d60f054c222806b566384a053a7..d688fb4426d2e7ed9d429588c0cb2564b7c952f8 100644
--- a/src/uncategorized/saRelationships.tw
+++ b/src/uncategorized/saRelationships.tw
@@ -955,7 +955,7 @@
 			<</if>>
 		<<elseif _SlaveI.relationshipRules == "just friends">>
 			<<if _SlaveI.relationship > 2 && _SlaveJ.relationshipRules == "restrictive">>
-				Since the sexual relationship between _SlaveI.slaveName and _SlaveJ.slaveName is against the rules, they are @@.lightsalmon;forced to keep their hands to themselves.@@
+				Since the sexual relationship between _SlaveI.slaveName and _SlaveJ.slaveName is against the rules, they are<<if (_SlaveI.missingArms == 3) && (_SlaveJ.missingArms == 3)>>, metaphorically speaking,<</if>>  @@.lightsalmon;forced to keep their hands to themselves.@@
 				<<set _SlaveJ.relationship = 2, _SlaveI.relationship = 2>>
 				<<if _SlaveI.devotion <= 50>>
 					_SlaveI.slaveName @@.mediumorchid;resents@@ this.
diff --git a/src/uncategorized/saRules.tw b/src/uncategorized/saRules.tw
index 495b51c511db45d5b59c5c57ca7f6c5f7932154c..4c7696532e4fd6bb1c33d1e11300c553a0a34b8f 100644
--- a/src/uncategorized/saRules.tw
+++ b/src/uncategorized/saRules.tw
@@ -67,7 +67,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -253,7 +253,7 @@
 						accepts having to relieve $himself solely through masturbation.
 						<<set $slaves[$i].need = 0>>
 					<<elseif ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -552,7 +552,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -746,7 +746,7 @@
 						accepts having to relieve $himself solely through masturbation.
 						<<set $slaves[$i].need = 0>>
 					<<elseif ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -1018,7 +1018,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -1198,7 +1198,7 @@
 					accepts having to relieve $himself solely through masturbation.
 					<<set $slaves[$i].need = 0>>
 				<<else>>
-					is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;understands you care about $his current health.@@
+					is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;understands you care about $his current health.@@
 					<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 				<</if>>
 				<<if $slaves[$i].devotion > 20>>
@@ -1683,7 +1683,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands, creams and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>>, creams, and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -1711,7 +1711,7 @@
 				<</if>> /* closes releaseRules not restrictive */
 			<</if>>
 
-			$He is @@.hotpink;very happy@@ with $his private room in the back of $spaName and @@.mediumaquamarine;trusts@@ you a bit more for placing the well-being of your slaves in $his hands.
+			$He is @@.hotpink;very happy@@ with $his private room in the back of $spaName and @@.mediumaquamarine;trusts@@ you a bit more for placing the well-being of your slaves in $his <<if $slaves[$i].missingArms == 3>>figurative <</if>>hand<<if $slaves[$i].missingArms == 0>>s<</if>>.
 			<<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>>
 
 			<<if ($universalRulesConsent == 0)>>
@@ -1862,7 +1862,7 @@
 						accepts having to relieve $himself solely through masturbation.
 						<<set $slaves[$i].need = 0>>
 					<<elseif ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -2180,7 +2180,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands, creams and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>>, creams, and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -2208,7 +2208,7 @@
 				<</if>> /* closes releaseRules not restrictive */
 			<</if>>
 
-			$He is @@.hotpink;very happy@@ with $his private room in the back of $nurseryName and @@.mediumaquamarine;trusts@@ you a bit more for placing the responsibility of raising $arcologies[0].name's children in $his hands.
+			$He is @@.hotpink;very happy@@ with $his private room in the back of $nurseryName and @@.mediumaquamarine;trusts@@ you a bit more for placing the responsibility of raising $arcologies[0].name's children in $his <<if $slaves[$i].missingArms == 3>>figurative <</if>>hand<<if $slaves[$i].missingArms == 0>>s<</if>>.
 			<<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>>
 
 			<<if ($universalRulesConsent == 0)>>
@@ -2359,7 +2359,7 @@
 						accepts having to relieve $himself solely through masturbation.
 						<<set $slaves[$i].need = 0>>
 					<<elseif ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -2693,7 +2693,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys outside of class, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys outside of class, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you won't make an example out of $him.@@
@@ -2721,7 +2721,7 @@
 				<</if>> /* closes releaseRules not restrictive */
 			<</if>>
 
-			$He is @@.hotpink;very happy@@ with $his private room in the back of $schoolroomName and @@.mediumaquamarine;trusts@@ you a bit more for placing the future education of your slaves in $his hands.
+			$He is @@.hotpink;very happy@@ with $his private room in the back of $schoolroomName and @@.mediumaquamarine;trusts@@ you a bit more for placing the future education of your slaves in $his <<if $slaves[$i].missingArms == 3>>figurative <</if>>hand<<if $slaves[$i].missingArms == 0>>s<</if>>.
 			<<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>>
 
 			<<if ($universalRulesConsent == 0)>>
@@ -2909,7 +2909,7 @@
 						accepts having to relieve $himself solely through masturbation.
 						<<set $slaves[$i].need = 0>>
 					<<elseif ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -3182,7 +3182,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -3366,7 +3366,7 @@
 						accepts having to relieve $himself solely through masturbation.
 						<<set $slaves[$i].need = 0>>
 					<<elseif ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -3673,7 +3673,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys when off duty, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys when off duty, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -3868,7 +3868,7 @@
 							accepts having to relieve $himself solely through masturbation.
 							<<set $slaves[$i].need = 0>>
 						<<elseif ($slaves[$i].devotion < 80)>>
-							is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+							is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 							<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 						<<else>>
 							@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -4218,7 +4218,7 @@
 					<<saRulesPlayerDrugEffects>>
 				<<elseif (_release == "masturbation")>>
 					<<if ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys when off duty, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys when off duty, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -4401,7 +4401,7 @@
 						accepts having to relieve $himself solely through masturbation.
 						<<set $slaves[$i].need = 0>>
 					<<elseif ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
@@ -5152,7 +5152,7 @@
 						accepts having to relieve $himself solely through masturbation.
 						<<set $slaves[$i].need = 0>>
 					<<elseif ($slaves[$i].devotion < 80)>>
-						is a little disappointed that $he's limited to $his hands and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
+						is a little disappointed that $he's limited to $his <<if $slaves[$i].missingArms == 3>>imagination<<else>>hand<<if $slaves[$i].missingArms == 0>>s<</if>><</if>> and toys, but @@.mediumaquamarine;trusts you know what's best for $him.@@
 						<<set $slaves[$i].trust += 1, $slaves[$i].need = 0>>
 					<<else>>
 						@@.mediumaquamarine;trusts your judgment@@ that only $he really knows how to pleasure $himself, though $he @@.mediumorchid;often wonders why you don't use $him.@@
diff --git a/src/utility/saRulesWidgets.tw b/src/utility/saRulesWidgets.tw
index ab2f11958c6bc845c2794706f1ef12cd3332bae6..9d464bd0f1489ac2233ca52e8d7b2a91f7e2f226 100644
--- a/src/utility/saRulesWidgets.tw
+++ b/src/utility/saRulesWidgets.tw
@@ -502,11 +502,11 @@ and
 								<<if $slaves[_j].sexualFlaw != "none">>
 									$He focuses on <<= SlaveFullName($slaves[_j])>>, who has a sexual flaw $slaves[$i].slaveName can exploit. $He sadistically
 									<<if $slaves[_j].sexualFlaw == "hates oral">>
-										rapes the poor slave's face<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates oral
+										rapes the poor slave's face<<if !canAchieveErection($slaves[$i])>> with <<if ($slaves[$i].missingArms != 3)>>$his fingers<<else>>a strap-on<</if>><</if>>. $slaves[_j].slaveName hates oral
 									<<elseif $slaves[_j].sexualFlaw == "hates penetration" && canDoVaginal($slaves[_j])>>
-										rapes the poor slave's pussy<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates penetration
+										rapes the poor slave's pussy<<if !canAchieveErection($slaves[$i])>> with <<if ($slaves[$i].missingArms != 3)>>$his fingers<<else>>a strap-on<</if>><</if>>. $slaves[_j].slaveName hates penetration
 									<<elseif ($slaves[_j].sexualFlaw == "hates anal" || $slaves[_j].sexualFlaw == "hates penetration") && canDoAnal($slaves[_j])>>
-										rapes the poor slave's ass<<if !canAchieveErection($slaves[$i])>> with $his fingers<</if>>. $slaves[_j].slaveName hates anal
+										rapes the poor slave's ass<<if !canAchieveErection($slaves[$i])>> with <<if ($slaves[$i].missingArms != 3)>>$his fingers<<else>>a strap-on<</if>><</if>>. $slaves[_j].slaveName hates anal
 									<<elseif $slaves[_j].sexualFlaw == "shamefast">>
 										rapes the poor slave in public. $slaves[_j].slaveName is terribly shamefast
 									<<elseif $slaves[_j].sexualFlaw == "idealistic">>