From c6992c7af8134e464d11312ebf64bfc38bdc2526 Mon Sep 17 00:00:00 2001
From: klorpa <30924131+klorpa@users.noreply.github.com>
Date: Tue, 30 Jul 2019 17:49:41 -0500
Subject: [PATCH] ConvertingStill

---
 src/interaction/main/toychest.js             |   4 +-
 src/js/DefaultRules.js                       |  10 +-
 src/js/descriptionWidgets.js                 |  26 ++--
 src/js/eventSelectionJS.js                   |  12 +-
 src/js/slaveCostJS.js                        |   8 +-
 src/js/slaveStatsChecker.js                  |   6 +-
 src/js/slaveSummaryWidgets.js                |   2 +-
 src/js/vignettes.js                          |   4 +-
 src/js/walkPastJS.js                         | 130 ++++++++--------
 src/npc/descriptions/fPoolSex.tw             |   2 +-
 src/pregmod/birthStorm.tw                    |   6 +-
 src/pregmod/fPat.tw                          |   6 +-
 src/pregmod/sePlayerBirth.tw                 |  12 +-
 src/pregmod/widgets/bodySwapReaction.tw      |  34 ++---
 src/pregmod/widgets/pregmodBirthWidgets.tw   |  14 +-
 src/uncategorized/PESS.tw                    |   2 +-
 src/uncategorized/REFI.tw                    |   2 +-
 src/uncategorized/RESS.tw                    |   2 +-
 src/uncategorized/RETS.tw                    |   8 +-
 src/uncategorized/clinicReport.tw            |   2 +-
 src/uncategorized/longSlaveDescription.tw    |   4 +-
 src/uncategorized/masterSuiteReport.tw       |   2 +-
 src/uncategorized/pBombing.tw                |   4 +-
 src/uncategorized/randomIndividualEvent.tw   |   2 +-
 src/uncategorized/reBusyArcade.tw            |   2 +-
 src/uncategorized/reBusyMasterSuite.tw       |   2 +-
 src/uncategorized/reDevotedMotherDaughter.tw |   2 +-
 src/uncategorized/reSlaveMarriage.tw         |   4 +-
 src/uncategorized/reStaffedMorning.tw        |   4 +-
 src/uncategorized/reStandardPunishment.tw    |   2 +-
 src/uncategorized/remoteSurgery.tw           |  32 ++--
 src/uncategorized/saDiet.tw                  |   2 +-
 src/uncategorized/saLiveWithHG.tw            |   6 +-
 src/uncategorized/saLongTermEffects.tw       |   2 +-
 src/uncategorized/saServeYourOtherSlaves.tw  |   6 +-
 src/uncategorized/saTakeClasses.tw           |   2 +-
 src/uncategorized/seExpiration.tw            |   4 +-
 src/uncategorized/seLethalPit.tw             |  20 +--
 src/uncategorized/seNonlethalPit.tw          |  38 ++---
 src/uncategorized/seRetirement.tw            |   2 +-
 src/uncategorized/seWeddingDouble.tw         |  92 +++++------
 src/uncategorized/seWeddingSingle.tw         |  42 ++---
 src/uncategorized/seWeddingTriple.tw         |   6 +-
 src/uncategorized/spaReport.tw               |   8 +-
 src/utility/descriptionWidgetsFlesh.tw       |   2 +-
 src/utility/descriptionWidgetsStyle.tw       | 152 +++++++++----------
 src/utility/saRulesWidgets.tw                |   8 +-
 47 files changed, 372 insertions(+), 372 deletions(-)

diff --git a/src/interaction/main/toychest.js b/src/interaction/main/toychest.js
index e95583cc72b..b74d133ae88 100644
--- a/src/interaction/main/toychest.js
+++ b/src/interaction/main/toychest.js
@@ -28,11 +28,11 @@ App.Interact.ToyChest = function(slave) {
 			}
 		} else if (slave.toyHole === "boobs") {
 			r += `is kneeling nearby with ${his} chest thrust out as far as it will go. `;
-		} else if ((slave.toyHole === "pussy") && (slave.missingLegs === 0)) {
+		} else if ((slave.toyHole === "pussy") && (hasBothLegs(slave))) {
 			r += `is kneeling on the couch with legs apart to present ${his} pussy. `;
 		} else if (slave.toyHole === "pussy") {
 			r += `is lying on the couch with ${his} pussy ready for you. `;
-		} else if ((slave.toyHole === "ass") && (slave.missingLegs === 0)) {
+		} else if ((slave.toyHole === "ass") && (hasBothLegs(slave))) {
 			r += `is lying on the couch with ${his} legs up and back to present ${his} butthole. `;
 		} else if (slave.toyHole === "ass") {
 			r += `is lying on the couch with ${his} butt ready for you. `;
diff --git a/src/js/DefaultRules.js b/src/js/DefaultRules.js
index 16c39b708b3..d440bd96abd 100644
--- a/src/js/DefaultRules.js
+++ b/src/js/DefaultRules.js
@@ -899,7 +899,7 @@ window.DefaultRules = (function() {
 		// apply shoes to slave
 		if ((rule.shoes !== undefined) && (rule.shoes !== null)) {
 			if ((slave.shoes !== rule.shoes)) {
-				if (slave.missingLegs !== 3) {
+				if (hasAnyLegs(slave)) {
 					slave.shoes = rule.shoes;
 					r += `<br>${slave.slaveName}'s shoes have been set to ${slave.shoes}.`;
 				}
@@ -935,7 +935,7 @@ window.DefaultRules = (function() {
 	 * @param {object} rule
 	 */
 	function ProcessArmAccessory(slave, rule) {
-		if (rule.armAccessory !== undefined && rule.armAccessory !== null && slave.missingArms !== 3 && slave.armAccessory !== rule.armAccessory) {
+		if (rule.armAccessory !== undefined && rule.armAccessory !== null && hasAnyArms(slave) && slave.armAccessory !== rule.armAccessory) {
 			slave.armAccessory = rule.armAccessory;
 			r += `<br>${slave.slaveName}'s arm accessory was set to ${rule.armAccessory}.`;
 		}
@@ -946,7 +946,7 @@ window.DefaultRules = (function() {
 	 * @param {object} rule
 	 */
 	function ProcessLegAccessory(slave, rule) {
-		if (rule.legAccessory !== undefined && rule.legAccessory !== null && slave.missingLegs !== 3 && slave.legAccessory !== rule.legAccessory) {
+		if (rule.legAccessory !== undefined && rule.legAccessory !== null && hasAnyLegs(slave) && slave.legAccessory !== rule.legAccessory) {
 			slave.legAccessory = rule.legAccessory;
 			r += `<br>${slave.slaveName}'s leg accessory was set to ${rule.legAccessory}.`;
 		}
@@ -2297,7 +2297,7 @@ window.DefaultRules = (function() {
 			}
 		}
 
-		if (slave.missingArms !== 3) {
+		if (hasAnyArms(slave)) {
 			if (rule.nails !== undefined && (rule.nails !== null)) {
 				if ((slave.nails !== rule.nails)) {
 					slave.nails = rule.nails;
@@ -2831,7 +2831,7 @@ window.DefaultRules = (function() {
 				slave.armsTat = rule.armsTat;
 				cashX(forceNeg(V.modCost), "slaveMod", slave);
 				r += `<br>${slave.slaveName}'s `;
-				if (slave.missingArms == 0) {
+				if (hasBothArms(slave)) {
 					r += `arms have`;
 				} else {
 					r += `arm has`;
diff --git a/src/js/descriptionWidgets.js b/src/js/descriptionWidgets.js
index c95e07ad64a..359cbee97fd 100644
--- a/src/js/descriptionWidgets.js
+++ b/src/js/descriptionWidgets.js
@@ -1032,34 +1032,34 @@ App.Desc.amputee = function(slave) {
 		} else {
 			r += `The most obvious thing about ${slave.slaveName} is that ${he} is a <span class="pink">quadruple amputee:</span> ${he} has neither arms nor legs. `;
 		}
-	} else if ((slave.missingArms !== 0) || (slave.missingLegs !== 0)) {
+	} else if ((!hasBothArms(slave)) || (!hasBothLegs(slave))) {
 		r += `The most obvious thing about ${slave.slaveName} is that ${he} is `;
-		if (((slave.missingArms === 3) && (slave.missingLegs !== 0)) || ((slave.missingArms !== 0) && (slave.missingLegs === 3))) {
+		if (((slave.missingArms === 3) && (!hasBothLegs(slave))) || ((!hasBothArms(slave)) && (slave.missingLegs === 3))) {
 			r += `a triple `;
-		} else if (((slave.missingArms !== 3) && (slave.missingLegs === 0)) || ((slave.missingArms === 0) && (slave.missingLegs !== 3))) {
+		} else if (((hasAnyArms(slave)) && (hasBothLegs(slave))) || ((hasBothArms(slave)) && (hasAnyLegs(slave)))) {
 			r += `an `;
 		} else {
 			r += `a double `;
 		}
 		r += `amputee: `;
-		if (slave.missingArms === 1) {
+		if (!hasAnyArms(slave)) {
+			r += `both of ${his} arms `;
+		} else if (!hasLeftArm(slave)) {
 			r += `${his} left arm `;
-		} else if (slave.missingArms === 2) {
+		} else if (!hasRightArm(slave)) {
 			r += `${his} right arm `;
-		} else if (slave.missingArms === 3) {
-			r += `both of ${his} arms `;
 		}
-		if ((slave.missingArms !== 0) && (slave.missingLegs !== 0)) {
+		if ((!hasBothArms(slave)) && (!hasBothLegs(slave))) {
 			r += `and `;
 		}
-		if (slave.missingLegs === 1) {
+		if (!hasAnyLegs(slave)) {
+			r += `both of ${his} legs `;
+		} else if (!hasLeftLeg(slave)) {
 			r += `${his} left leg `;
-		} else if (slave.missingLegs === 2) {
+		} else if (!hasRightLeg(slave)) {
 			r += `${his} right leg `;
-		} else if (slave.missingLegs === 3) {
-			r += `both of ${his} legs `;
 		}
-		if (((slave.missingArms !== 3) && (slave.missingLegs === 0)) || ((slave.missingArms === 0) && (slave.missingLegs !== 3))) {
+		if (((hasAnyArms(slave)) && (hasBothLegs(slave))) || ((hasBothArms(slave)) && (hasAnyLegs(slave)))) {
 			r += `has been reduced to a stump.`;
 		} else {
 			r += `have been reduced to stumps.`;
diff --git a/src/js/eventSelectionJS.js b/src/js/eventSelectionJS.js
index 155a6832207..7d645bab9a8 100644
--- a/src/js/eventSelectionJS.js
+++ b/src/js/eventSelectionJS.js
@@ -2,7 +2,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 	/* STANDARD EVENTS */
 
 	if (eventSlave.fetish !== "mindbroken") {
-		if (eventSlave.missingArms !== 3 && eventSlave.missingLegs !== 3) {
+		if (hasAnyArms(eventSlave) && hasAnyLegs(eventSlave)) {
 			if (canTalk(eventSlave)) {
 				if (State.variables.RECockmilkInterceptionIDs.length > 1 || (State.variables.RECockmilkInterceptionIDs.length === 1 && eventSlave.ID !== State.variables.RECockmilkInterceptionIDs[0])) {
 					if (eventSlave.devotion > 20) {
@@ -1571,7 +1571,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 
 		if (eventSlave.aphrodisiacs > 1 || eventSlave.inflationType === "aphrodisiac") {
 			if (eventSlave.speechRules === "restrictive" && eventSlave.releaseRules !== "permissive") {
-				if (eventSlave.missingArms !== 3) {
+				if (hasAnyArms(eventSlave)) {
 					State.variables.RESSevent.push("extreme aphrodisiacs");
 				}
 			}
@@ -1585,7 +1585,7 @@ window.generateRandomEventPoolStandard = function(eventSlave) {
 
 		if (eventSlave.releaseRules !== "restrictive" && eventSlave.releaseRules !== "chastity") {
 			if (eventSlave.dick > 4) {
-				if (eventSlave.missingArms !== 3) {
+				if (hasAnyArms(eventSlave)) {
 					if (canAchieveErection(eventSlave)) {
 						if (eventSlave.belly < 10000) {
 							if (eventSlave.chastityPenis !== 1) {
@@ -1847,7 +1847,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 	/* STANDARD EVENTS */
 
 	if (eventSlave.fetish !== "mindbroken") {
-		if (eventSlave.missingArms !== 3 && eventSlave.missingLegs !== 3) {
+		if (hasAnyArms(eventSlave) && hasAnyLegs(eventSlave)) {
 			if (canTalk(eventSlave)) {
 				if (State.variables.RECockmilkInterceptionIDs.length > 1 || (State.variables.RECockmilkInterceptionIDs.length === 1 && eventSlave.ID !== State.variables.RECockmilkInterceptionIDs[0])) {
 					if (eventSlave.devotion > 20) {
@@ -2772,7 +2772,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 
 		if (eventSlave.aphrodisiacs > 1 || eventSlave.inflationType === "aphrodisiac") {
 			if (eventSlave.speechRules === "restrictive" && eventSlave.releaseRules !== "permissive") {
-				if (eventSlave.missingArms !== 3) {
+				if (hasAnyArms(eventSlave)) {
 					State.variables.RESSevent.push("extreme aphrodisiacs");
 				}
 			}
@@ -2786,7 +2786,7 @@ window.generateRandomEventPoolServant = function(eventSlave) {
 
 		if (eventSlave.releaseRules !== "restrictive" && eventSlave.releaseRules !== "chastity") {
 			if (eventSlave.dick > 4) {
-				if (eventSlave.missingArms !== 3) {
+				if (hasAnyArms(eventSlave)) {
 					if (canAchieveErection(eventSlave)) {
 						if (eventSlave.belly < 10000) {
 							if (eventSlave.chastityPenis !== 1) {
diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js
index 29327e92e53..53042319f9e 100644
--- a/src/js/slaveCostJS.js
+++ b/src/js/slaveCostJS.js
@@ -1099,12 +1099,12 @@ window.Beauty = (function() {
 			case 0:
 				if (slave.missingArms === 3) {
 					beauty -= 5;
-				} else if (slave.missingArms !== 0) {
+				} else if (!hasBothArms(slave)) {
 					beauty -= 2.5;
 				}
 				if (slave.missingLegs === 3) {
 					beauty -= 5;
-				} else if (slave.missingLegs !== 0) {
+				} else if (!hasBothLegs(slave)) {
 					beauty -= 2.5;
 				}
 				break;
@@ -1852,12 +1852,12 @@ window.FResult = (function() {
 			case 0:
 				if (slave.missingArms === 3) {
 					result -= 1;
-				} else if (slave.missingArms !== 0) {
+				} else if (!hasBothArms(slave)) {
 					result -= 0.5;
 				}
 				if (slave.missingLegs === 3) {
 					result -= 1;
-				} else if (slave.missingLegs !== 0) {
+				} else if (!hasBothLegs(slave)) {
 					result -= 0.5;
 				}
 				break;
diff --git a/src/js/slaveStatsChecker.js b/src/js/slaveStatsChecker.js
index 70125dc1ac0..17fdcc73caf 100644
--- a/src/js/slaveStatsChecker.js
+++ b/src/js/slaveStatsChecker.js
@@ -634,7 +634,7 @@ window.canWalk = function(slave) {
 		return null;
 	} else if (slave.amp === 1) {
 		return false;
-	} else if (slave.missingLegs !== 0) {
+	} else if (!hasBothLegs(slave)) {
 		return false;
 	} else if (tooFatSlave(slave)) {
 		return false;
@@ -1048,7 +1048,7 @@ window.getLimbCount = function(slave, id) {
  * @returns {boolean}
  */
 window.hasLeftArm = function(slave) {
-	return slave.missingArms !== 1 && slave.missingArms !== 3;
+	return slave.missingArms !== 1 && hasAnyArms(slave);
 };
 
 /**
@@ -1068,7 +1068,7 @@ window.hasRightArm = function(slave) {
  * @returns {boolean}
  */
 window.hasLeftLeg = function(slave) {
-	return slave.missingLegs !== 1 && slave.missingLegs !== 3;
+	return slave.missingLegs !== 1 && hasAnyLegs(slave);
 };
 
 /**
diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js
index 03374fcc76c..675afafd1de 100644
--- a/src/js/slaveSummaryWidgets.js
+++ b/src/js/slaveSummaryWidgets.js
@@ -246,7 +246,7 @@ window.SlaveSummaryUncached = (function() {
 				long_clothes(slave, dressingBlock);
 				long_collar(slave, dressingBlock);
 				long_belly(slave, dressingBlock);
-				if (slave.missingArms !== 3) {
+				if (hasAnyArms(slave)) {
 					long_arms(slave, dressingBlock);
 				}
 				if (hasAnyLegs(slave)) {
diff --git a/src/js/vignettes.js b/src/js/vignettes.js
index ca2df75d23d..1cb1b075e9f 100644
--- a/src/js/vignettes.js
+++ b/src/js/vignettes.js
@@ -4289,7 +4289,7 @@ window.GetVignette = function GetVignette(slave) {
 		}
 		if (slave.energy > 95) {
 			if (slave.behavioralFlaw === "odd") {
-				if (slave.missingArms !== 3 && canSee(slave)) {
+				if (hasAnyArms(slave) && canSee(slave)) {
 					vignettes.push({
 						text: `you discovered ${him} sketching an image of ${his} genitalia, which you managed to sell,`,
 						type: "cash",
@@ -4304,7 +4304,7 @@ window.GetVignette = function GetVignette(slave) {
 					effect: -1,
 				});
 			} else {
-				if (slave.missingArms !== 3) {
+				if (hasAnyArms(slave)) {
 					if (slave.releaseRules === "permissive" || slave.releaseRules === "masturbation") {
 						vignettes.push({
 							text: `due to the obvious difficulties in ${his} mobility, ${he} spent a lot of time masturbating in bed,`,
diff --git a/src/js/walkPastJS.js b/src/js/walkPastJS.js
index 2a51f6053a0..00bceec49c0 100644
--- a/src/js/walkPastJS.js
+++ b/src/js/walkPastJS.js
@@ -169,7 +169,7 @@ window.loverSlave = function(activeSlave) {
 				} else if (canDoAnal(activeSlave) && activeSlave.anus > 0 && _fuckSeed > 10) {
 					if (canPenetrate(_partnerSlave)) {
 						t += `${partnerName} is enthusiastically fucking ${name}'s ass.`;
-					} else if (_partnerSlave.missingArms !== 3) {
+					} else if (hasAnyArms(_partnerSlave)) {
 						t += `${partnerName} is enthusiastically fisting ${name}'s ass.`;
 					} else {
 						t += `${partnerName} is enthusiastically pounding ${name}'s ass with a dildo.`;
@@ -184,14 +184,14 @@ window.loverSlave = function(activeSlave) {
 							t += `snuggling rather sexually ${_fuckSpot}. `;
 							if (_fuckSeed > 80 && _partnerSlave.lactation > 0) {
 								t += `${name} loves how milky ${partnerName}'s tits are and has ${his} lips wrapped around a nipple. `;
-								if (_partnerSlave.missingArms !== 3) {
+								if (hasAnyArms(_partnerSlave)) {
 									t += `${partnerName} is left to moan lustfully and tweak ${his2} free nipple until ${his2} ${activeSlaveRel} has drunk ${his} fill.`;
 								} else {
 									t += `${partnerName} is left to moan lustfully and squirm with desire until ${his2} ${activeSlaveRel} has drunk ${his} fill and moves to ${his2} other nipple.`;
 								}
 							} else {
 								t += `${name} loves having ${his} breasts suckled and has ${partnerName}'s lips wrapped around a nipple. `;
-								if (activeSlave.missingArms !== 3) {
+								if (hasAnyArms(activeSlave)) {
 									t += `${partnerName} is held close until ${his2} ${activeSlaveRel} has been completely emptied.`;
 								} else {
 									t += `${partnerName} knows that ${his2} ${activeSlaveRel} can't milk ${himself} and appreciates the act.`;
@@ -210,7 +210,7 @@ window.loverSlave = function(activeSlave) {
 								t += `${his} breasts touched and massaged, so ${partnerName} looks after ${his2} ${activeSlaveRel}'s tits. `;
 								if (_partnerSlave.missingArms === 3) {
 									t += `Since ${partnerName} is an amputee, ${name} has ${him2} propped on ${his} belly so ${he} can easily suckle and nuzzle.`;
-								} else if (_partnerSlave.missingArms !== 3) {
+								} else if (hasAnyArms(_partnerSlave)) {
 									t += `They're spooning in bed with ${partnerName} forming the large spoon so ${he2} can reach around and play with ${name}'s boobs.`;
 								} else if (activeSlave.missingArms == 3) {
 									t += `Since they are both limbless, they've helped each other into a position where each can easily suckle and nuzzle the other's boobs.`;
@@ -221,7 +221,7 @@ window.loverSlave = function(activeSlave) {
 								t += `a nice pair of breasts to enjoy, so ${he} focuses ${his} attention on ${partnerName}'s larger bosom. `;
 								if (activeSlave.missingArms === 3) {
 									t += `Since ${name} is a quadruple amputee, ${partnerName} has ${him} propped on ${his2} belly so ${he} can make ${himself} comfortable in ${his2} bust.`;
-								} else if (activeSlave.missingArms !== 3) {
+								} else if (hasAnyArms(activeSlave)) {
 									t += `They're spooning in bed with ${activeSlave} forming the large spoon so ${he} can reach around and play with ${partnerName}'s boobs.`;
 								} else if (_partnerSlave.missingArms == 3) {
 									t += `Since they are both limbless, they've helped each other into a position where each can easily suckle and nuzzle the other's boobs.`;
@@ -270,7 +270,7 @@ window.loverSlave = function(activeSlave) {
 								} else {
 									t += `impotent.`;
 								}
-								if (_partnerSlave.missingArms !== 3) {
+								if (hasAnyArms(_partnerSlave)) {
 									if (activeSlave.anus > 2) {
 										t += ` Or rather, a fist fuck, since that's what it takes to satisfy ${his2} ${activeSlaveRel}'s gaping hole.`;
 									} else if (activeSlave.anus > 1) {
@@ -309,13 +309,13 @@ window.loverSlave = function(activeSlave) {
 							if (_partnerSlave.chastityPenis !== 1 && _partnerSlave.dick > 0) {
 								if (canPenetrate(_partnerSlave)) {
 									t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s turgid cock.`;
-								} else if (_partnerSlave.dick > 7 && activeSlave.missingArms !== 3) {
+								} else if (_partnerSlave.dick > 7 && hasAnyArms(activeSlave)) {
 									t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s fat cock. ${He} is milking the oversized beast as best ${he} can in an effort to draw out a nice, big load of ${his2} cum.`;
-								} else if (_partnerSlave.anus > 0 && canDoAnal(_partnerSlave) && _partnerSlave.prostate > 0 && activeSlave.missingArms !== 3) {
+								} else if (_partnerSlave.anus > 0 && canDoAnal(_partnerSlave) && _partnerSlave.prostate > 0 && hasAnyArms(activeSlave)) {
 									t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} has a finger up poor impotent ${partnerName}'s butt to stimulate ${his2} prostate so ${he2} can cum for ${him}.`;
-								} else if (_partnerSlave.scrotum > 0 && activeSlave.missingArms !== 3) {
+								} else if (_partnerSlave.scrotum > 0 && hasAnyArms(activeSlave)) {
 									t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} is massaging ${his2} balls so ${he2} can cum for ${him}.`;
-								} else if (activeSlave.missingArms !== 3) {
+								} else if (hasAnyArms(activeSlave)) {
 									t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} has a finger massaging poor impotent ${partnerName}'s perineum in the hope of stimulating ${him2} so ${he2} can cum for ${him}.`;
 								} else {
 									t += `with ${name} hungrily sucking ${his} ${partnerSlaveRel}'s limp cock in the hopes ${he} can coax something out.`;
@@ -330,13 +330,13 @@ window.loverSlave = function(activeSlave) {
 							if (_partnerSlave.chastityPenis !== 1 && _partnerSlave.dick > 0) {
 								if (canPenetrate(_partnerSlave)) {
 									t += `hungrily sucking ${his} ${partnerSlaveRel}'s turgid cock.`;
-								} else if (_partnerSlave.dick > 7 && activeSlave.missingArms !== 3) {
+								} else if (_partnerSlave.dick > 7 && hasAnyArms(activeSlave)) {
 									t += `hungrily sucking ${his} ${partnerSlaveRel}'s fat cock. ${He} is milking the oversized beast as best ${he} can in an effort to draw out a nice, big load of ${his2} cum.`;
-								} else if (_partnerSlave.anus > 0 && canDoAnal(_partnerSlave) && _partnerSlave.prostate > 0 && activeSlave.missingArms !== 3) {
+								} else if (_partnerSlave.anus > 0 && canDoAnal(_partnerSlave) && _partnerSlave.prostate > 0 && hasAnyArms(activeSlave)) {
 									t += `hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} has a finger up poor impotent ${partnerName}'s butt to stimulate ${his2} prostate so ${he2} can cum for ${him}.`;
-								} else if (_partnerSlave.scrotum > 0 && activeSlave.missingArms !== 3) {
+								} else if (_partnerSlave.scrotum > 0 && hasAnyArms(activeSlave)) {
 									t += `hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} is massaging ${his2} balls so ${he2} can cum for ${him}.`;
-								} else if (activeSlave.missingArms !== 3) {
+								} else if (hasAnyArms(activeSlave)) {
 									t += `hungrily sucking ${his} ${partnerSlaveRel}'s limp cock. ${He} has a finger massaging poor impotent ${partnerName}'s perineum in the hope of stimulating ${him2} so ${he2} can cum for ${him}.`;
 								} else {
 									t += `hungrily sucking ${his} ${partnerSlaveRel}'s limp cock in the hopes ${he} can coax something out.`;
@@ -376,7 +376,7 @@ window.loverSlave = function(activeSlave) {
 									t += `${partnerName} is circling the tip of ${his2} erection around ${name}'s virgin butthole and forcing ${him} to reveal just how bad ${he} wants it.`;
 								} else if (_fuckSeed > 90 && hasBothLegs(activeSlave)) {
 									t += `${partnerName} has ${name} on ${his} knees and is forcibly fucking ${his} ass doggy style while raining loving insults down on ${his2} bitch of a ${activeSlaveRel}.`;
-								} else if (_fuckSeed > 80 && activeSlave.amp !== 1 && _partnerSlave.missingArms !== 3) {
+								} else if (_fuckSeed > 80 && activeSlave.amp !== 1 && hasAnyArms(_partnerSlave)) {
 									t += `${partnerName} has ${name} pushed against the wall and is fucking ${his} ass from behind while raining loving insults down on ${his2} bitch of a ${activeSlaveRel}.`;
 								} else if (_fuckSeed > 70) {
 									t += `${partnerName} is on ${his2} back and forcing ${name} to ride ${his2} dick anally while raining loving insults down on ${his2} bitch of a ${activeSlaveRel}.`;
@@ -398,9 +398,9 @@ window.loverSlave = function(activeSlave) {
 									t += `${partnerName} has a foot on ${name}'s turgid cock and is slowly and methodically keeping ${him} just short of release while ${he} begs for ${him2} to continue.`;
 								} else if (_partnerSlave.vagina === 0) {
 									t += `${partnerName} is rubbing ${his2} virgin pussy along the length of ${name}'s erection and is forcing ${him} to reveal just how badly ${he} wants to stick it in ${him2}. Of course, that's not going to happen and ${name} knows it.`;
-								} else if (_fuckSeed > 45 && activeSlave.missingArms === 0) {
+								} else if (_fuckSeed > 45 && hasBothArms(activeSlave)) {
 									t += `${partnerName} is forcing ${name} to hold ${him2} aloft as ${he2} gets fucked by ${his2} bitch of a ${activeSlaveRel}.`;
-								} else if (_fuckSeed > 40 && activeSlave.amp !== 1 && _partnerSlave.missingArms !== 3) {
+								} else if (_fuckSeed > 40 && activeSlave.amp !== 1 && hasAnyArms(_partnerSlave)) {
 									t += `${partnerName} has ${name} pinned against the wall and is taking ${his} dick in ${his2} pussy by force.`;
 								} else if (_fuckSeed > 35) {
 									t += `${partnerName} has ${name} on ${his} back and is riding ${his} dick while raining loving insults down on ${his2} bitch of a ${activeSlaveRel}.`;
@@ -418,14 +418,14 @@ window.loverSlave = function(activeSlave) {
 									t += `${partnerName} has a foot on ${name}'s turgid cock and is slowly and methodically keeping ${him} just short of release while ${he} begs for ${him2} to continue.`;
 								} else if (_partnerSlave.vagina === 0) {
 									t += `${partnerName} is rubbing ${his2} virgin butthole around the tip of ${name}'s erection and is forcing ${him} to reveal just how badly ${he} wants to stick it in ${him2}. Of course, that's not going to happen and ${name} knows it.`;
-								} else if (_fuckSeed > 20 && activeSlave.missingArms === 0) {
+								} else if (_fuckSeed > 20 && hasBothArms(activeSlave)) {
 									t += `${partnerName} is forcing ${name} to hold ${him2} aloft as ${he2} gets anally fucked by ${his2} bitch of a ${activeSlaveRel}.`;
-								} else if (_fuckSeed > 10 && activeSlave.amp !== 1 && _partnerSlave.missingArms !== 3) {
+								} else if (_fuckSeed > 10 && activeSlave.amp !== 1 && hasAnyArms(_partnerSlave)) {
 									t += `${partnerName} has ${name} pinned against the wall behind ${him2} and is anally taking ${his} dick by force.`;
 								} else {
 									t += `${partnerName} has ${name} on ${his} back and is anally riding ${his} dick while raining loving insults down on ${his2} bitch of a ${activeSlaveRel}.`;
 								}
-							} else if (_partnerSlave.missingArms !== 3) {
+							} else if (hasAnyArms(_partnerSlave)) {
 								t += `${partnerName} is fisting ${name}'s ass while raining loving insults down on ${his2} bitch of a ${activeSlaveRel}.`;
 							} else {
 								t += `${partnerName} is pounding ${name}'s ass with a dildo while raining loving insults down on ${his2} bitch of a ${activeSlaveRel}.`;
@@ -440,13 +440,13 @@ window.loverSlave = function(activeSlave) {
 							if (canDoVaginal(_partnerSlave)) {
 								if (_partnerSlave.vagina === 0) {
 									t += `${name} has ${partnerName} pinned to the ground with ${his} dick lined up with {his2} virgin pussy. ${partnerName} is struggling and pleading with ${him} not to take it like this.`;
-								} else if (_fuckSeed > 90 && activeSlave.missingLegs === 0) {
+								} else if (_fuckSeed > 90 && hasBothLegs(activeSlave)) {
 									t += `${name} has ${partnerName} on ${his} knees and is forcibly fucking ${his2} pussy doggy style while {he2} struggles to get away.`;
-								} else if (_fuckSeed > 80 && activeSlave.missingArms !== 3 && _partnerSlave.amp !== 1) {
+								} else if (_fuckSeed > 80 && hasAnyArms(activeSlave) && _partnerSlave.amp !== 1) {
 									t += `${name} has ${partnerName} pushed against the wall is is fucking ${his} pussy from behind while {he2} struggles to get away.`;
-								} else if (_fuckSeed > 70 && activeSlave.missingArms !== 3) {
+								} else if (_fuckSeed > 70 && hasAnyArms(activeSlave)) {
 									t += `${name} is on ${his} back and forcing ${partnerName} to ride ${his} dick while keeping a firm hold on ${his2} hips.`;
-								} else if (_fuckSeed > 60 && _partnerSlave.belly < 500 && activeSlave.missingLegs !== 3) {
+								} else if (_fuckSeed > 60 && _partnerSlave.belly < 500 && hasAnyLegs(activeSlave)) {
 									t += `${name} has ${partnerName} on ${his2} back and trapped in a mating press. ${partnerName} is struggling and begging ${him} not to get ${him2} pregnant.`;
 								} else {
 									t += `${name} is forcing ${himself} into ${partnerName}'s pussy while {he2} struggles to get away.`;
@@ -454,11 +454,11 @@ window.loverSlave = function(activeSlave) {
 							} else if (canDoAnal(_partnerSlave)) {
 								if (_partnerSlave.anus === 0) {
 									t += `${name} is circling the tip of ${his} erection around ${partnerName}'s virgin butthole. ${partnerName} is struggling and pleading with ${him} not to take it like this.`;
-								} else if (_fuckSeed > 90 && activeSlave.missingLegs === 0) {
+								} else if (_fuckSeed > 90 && hasBothLegs(activeSlave)) {
 									t += `${name} has ${partnerName} on ${his2} knees and is forcibly fucking ${his2} ass doggy style while {he2} struggles to get away.`;
-								} else if (_fuckSeed > 80 && activeSlave.missingArms !== 3 && _partnerSlave.amp !== 1) {
+								} else if (_fuckSeed > 80 && hasAnyArms(activeSlave) && _partnerSlave.amp !== 1) {
 									t += `${name} has ${partnerName} pushed against the wall and is fucking ${his2} ass from behind while {he2} struggles to get away.`;
-								} else if (_fuckSeed > 70 && activeSlave.missingArms === 0) {
+								} else if (_fuckSeed > 70 && hasBothArms(activeSlave)) {
 									t += `${name} is on ${his} back and forcing ${partnerName} to ride ${his} dick anally while keeping a firm hold on ${his2} hips.`;
 								} else if (_fuckSeed > 60) {
 									t += `${name} has ${partnerName} pushed face first into the ground has ${him2} trapped beneath ${his} weight while ${he} fucks ${his2} ass.`;
@@ -474,9 +474,9 @@ window.loverSlave = function(activeSlave) {
 							t += `${name} is deepthroating ${partnerName} as ${he2} struggles to breath.`;
 						} else if (canDoVaginal(activeSlave) && _fuckSeed > 30) {
 							if (canPenetrate(_partnerSlave) && activeSlave.vagina !== 0) {
-								if (_fuckSeed > 45 && _partnerSlave.missingArms === 0) {
+								if (_fuckSeed > 45 && hasBothArms(_partnerSlave)) {
 									t += `${name} is forcing ${partnerName} to hold ${him} aloft as ${he} enjoys a good vaginal pounding from an unwilling partner.`;
-								} else if (_fuckSeed > 40 && activeSlave.missingArms !== 3 && _partnerSlave.amp !== 1) {
+								} else if (_fuckSeed > 40 && hasAnyArms(activeSlave) && _partnerSlave.amp !== 1) {
 									t += `${name} has ${partnerName} pinned against the wall and is taking ${his2} dick in ${his} pussy by force.`;
 								} else if (_fuckSeed > 35) {
 									t += `${name} has ${partnerName} on ${his2} back and is riding ${his2} dick while ${he2} tries to buck ${him} off.`;
@@ -489,9 +489,9 @@ window.loverSlave = function(activeSlave) {
 								t += `${name} is straddling ${partnerName}'s face and forcing ${him2} to eat ${him} out.`;
 							}
 						} else if (canDoAnal(activeSlave) && canPenetrate(_partnerSlave) && _fuckSeed > 10 && activeSlave.anus !== 0) {
-							if (_fuckSeed > 20 && activeSlave.missingArms === 0) {
+							if (_fuckSeed > 20 && hasBothArms(activeSlave)) {
 								t += `${name} is forcing ${partnerName} to hold ${him} aloft as ${he} enjoys a good anal pounding from an unwilling partner.`;
-							} else if (_fuckSeed > 10 && activeSlave.missingArms !== 3 && _partnerSlave.amp !== 1) {
+							} else if (_fuckSeed > 10 && hasAnyArms(activeSlave) && _partnerSlave.amp !== 1) {
 								t += `${name} has ${partnerName} pinned against the wall and is taking ${his2} dick in ${his} ass by force.`;
 							} else {
 								t += `${name} has ${partnerName} on ${his2} back and is anally riding ${his2} dick while ${he2} tries to buck ${him} off.`;
@@ -510,11 +510,11 @@ window.loverSlave = function(activeSlave) {
 						break;
 					case "sadist":
 						t += `playing pain games ${_fuckSpot}. ${name} loves hurting other slaves, even ${his} friends, and ${partnerName} submits to ${his} agonizing ministrations as often as ${name} can cajole or force ${him2} into it. `;
-						if (activeSlave.missingArms !== 3 && activeSlave.missingLegs !== 3) {
+						if (hasAnyArms(activeSlave) && hasAnyLegs(activeSlave)) {
 							t += `${name} has ${partnerName} over ${his} knee and is methodically tanning ${his2} ${race2} ass.`;
-						} else if (activeSlave.missingArms !== 3) {
+						} else if (hasAnyArms(activeSlave)) {
 							t += `${name} has ${partnerName} on the ground and is methodically tanning ${his2} ${race2} ass.`;
-						} else if (activeSlave.missingLegs !== 3) {
+						} else if (hasAnyLegs(activeSlave)) {
 							t += `${name} has ${partnerName} over ${his} knee and is methodically striking ${his2} ${race2} ass with a switch held by mouth.`;
 						} else {
 							t += `${name} has ${partnerName} on the ground and is methodically striking ${his2} ${race2} ass with a switch held by mouth. Even without limbs, ${name} finds a way.`;
@@ -522,9 +522,9 @@ window.loverSlave = function(activeSlave) {
 						break;
 					case "masochist":
 						t += `playing pain games ${_fuckSpot}. ${name} loves being hurt, so ${partnerName} frequently indulges ${him} with spanking, slapping, pinching, and more exotic forms of abuse. `;
-						if (_partnerSlave.missingArms !== 3 && _partnerSlave.missingLegs !== 3) {
+						if (hasAnyArms(_partnerSlave) && _partnerSlave.missingLegs !== 3) {
 							t += `${partnerName} has ${name} over ${his2} knee and is methodically tanning ${his} ${race} ass.`;
-						} else if (_partnerSlave.missingArms !== 3) {
+						} else if (hasAnyArms(_partnerSlave)) {
 							t += `${partnerName} has ${name} on the ground and is methodically tanning ${his} ${race} ass.`;
 						} else if (_partnerSlave.missingLegs !== 3) {
 							t += `${partnerName} has ${name} over ${his} knee and is methodically striking ${his} ${race} ass with a switch held by mouth.`;
@@ -554,7 +554,7 @@ window.loverSlave = function(activeSlave) {
 							} else {
 								t += `up ${his} ass.`;
 							}
-						} else if (activeSlave.dick === 1 && _partnerSlave.missingArms !== 3 && _fuckSeed > 40) {
+						} else if (activeSlave.dick === 1 && hasAnyArms(_partnerSlave) && _fuckSeed > 40) {
 							t += `jacking off ${name}'s pathetically tiny cock out in the open so ${he} can blush and shiver as passing slaves see how embarrassingly small ${he} is.`;
 						} else if (activeSlave.dick === 1 && _fuckSeed > 20) {
 							t += `having ${name} give ${him2} oral out in the open so ${he} can blush and shiver as passing slaves see what a slut ${he} is.`;
@@ -583,14 +583,14 @@ window.loverSlave = function(activeSlave) {
 									}
 									t += `${himself2} `;
 									if (activeSlave.belly >= 5000) {
-										if (activeSlave.missingLegs !== 3 && _partnerSlave.missingArms === 0 && _partnerSlave.missingLegs === 0) {
+										if (hasAnyLegs(activeSlave) && hasBothArms(_partnerSlave) && hasBothLegs(_partnerSlave)) {
 											t += `so ${name} has ${him2} on all fours as ${he} fucks ${him2} from behind while resting ${his} belly on ${his} love's back.`;
 										} else {
 											t += `so ${he2} is intertwined as best ${he2} can with ${name} as their combined bellies push into each other.`;
 										}
 									} else {
 										t += `so ${he2} has ${name} on ${his} back so that ${he2} can ride ${him} while `;
-										if (activeSlave.missingArms !== 3) {
+										if (hasAnyArms(activeSlave)) {
 											t += `letting ${him} fondle ${his2} bouncing belly.`;
 										} else {
 											t += `giving ${him} a face full of belly.`;
@@ -620,14 +620,14 @@ window.loverSlave = function(activeSlave) {
 									}
 									t += `${himself2} `;
 									if (activeSlave.belly >= 5000) {
-										if (activeSlave.missingLegs !== 3 && _partnerSlave.missingArms === 0 && _partnerSlave.missingLegs === 0) {
+										if (hasAnyLegs(activeSlave) && hasBothArms(_partnerSlave) && hasBothLegs(_partnerSlave)) {
 											t += `so ${name} has ${him2} on all fours as ${he} fucks ${his2} ass while resting ${his} belly on ${his2} back.`;
 										} else {
 											t += `so ${he2} is intertwined as best as ${he2} can for anal sex with ${name} as ${his} belly pushes into ${his2} back.`;
 										}
 									} else {
 										t += `so ${he2} has ${name} on ${his} back so that ${he2} can anally ride ${him} while `;
-										if (activeSlave.missingArms !== 3) {
+										if (hasAnyArms(activeSlave)) {
 											t += `letting ${him} fondle ${his2} bouncing belly.`;
 										} else {
 											t += `giving ${him} a face full of belly.`;
@@ -871,7 +871,7 @@ window.loverSlave = function(activeSlave) {
 					t += `gets fucked at work, `;
 				}
 				t += `${partnerName} understands that what ${he} really wants from ${him2} is emotional intimacy. They're cuddling quietly, offering each other silent comfort and companionship.`;
-			} else if (canPenetrate(activeSlave) && (_partnerSlave.vagina > 0) && canDoVaginal(_partnerSlave) && _partnerSlave.missingArms === 0 && _partnerSlave.missingLegs === 0 && (activeSlave.belly + _partnerSlave.belly < 10000)) {
+			} else if (canPenetrate(activeSlave) && (_partnerSlave.vagina > 0) && canDoVaginal(_partnerSlave) && hasBothArms(_partnerSlave) && hasBothLegs(_partnerSlave) && (activeSlave.belly + _partnerSlave.belly < 10000)) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -886,7 +886,7 @@ window.loverSlave = function(activeSlave) {
 					t += `gazing longingly into ${his} face `;
 				}
 				t += `as ${he2} enjoys the wonderful feeling of ${his2} ${activeSlaveRel}'s cock in ${his2} womanhood.`;
-			} else if (activeSlave.clit > 2 && canDoVaginal(activeSlave) && _partnerSlave.vagina > 0 && canDoVaginal(_partnerSlave) && _partnerSlave.missingArms === 0 && _partnerSlave.missingLegs === 0 && (activeSlave.belly + _partnerSlave.belly < 10000)) {
+			} else if (activeSlave.clit > 2 && canDoVaginal(activeSlave) && _partnerSlave.vagina > 0 && canDoVaginal(_partnerSlave) && hasBothArms(_partnerSlave) && hasBothLegs(_partnerSlave) && (activeSlave.belly + _partnerSlave.belly < 10000)) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -901,7 +901,7 @@ window.loverSlave = function(activeSlave) {
 					t += `gazing longingly into ${his} face `;
 				}
 				t += `as ${he2} enjoys the wonderful feeling of ${his2} ${activeSlaveRel}'s huge clit in ${his2} womanhood.`;
-			} else if (activeSlave.dick > 1 && canPenetrate(activeSlave) && canDoAnal(_partnerSlave) && _partnerSlave.anus > 0 && activeSlave.missingArms === 0 && activeSlave.belly < 10000) {
+			} else if (activeSlave.dick > 1 && canPenetrate(activeSlave) && canDoAnal(_partnerSlave) && _partnerSlave.anus > 0 && hasBothArms(activeSlave) && activeSlave.belly < 10000) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -914,7 +914,7 @@ window.loverSlave = function(activeSlave) {
 					t +=`ears and `;
 				}
 				t += `neck, cupping a breast with one hand, and lightly stimulating ${him2} with the other.`;
-			} else if (activeSlave.clit > 2 && canDoAnal(_partnerSlave) && _partnerSlave.anus > 0 && _partnerSlave.missingArms !== 3 && activeSlave.missingLegs !== 3) {
+			} else if (activeSlave.clit > 2 && canDoAnal(_partnerSlave) && _partnerSlave.anus > 0 && hasAnyArms(_partnerSlave) && hasAnyLegs(activeSlave)) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -923,7 +923,7 @@ window.loverSlave = function(activeSlave) {
 					t += `on ${name}'s bedroll `;
 				}
 				t += `${_fuckSpot}, managing to have clitoral-anal sex. ${partnerName} is face-down with ${his2} ass up, spreading ${his2} buttocks as wide as possible, giving ${his2} ${activeSlaveRel} the opportunity to squat over ${him2} and penetrate it with ${his} huge, erect clit. ${name} can't thrust much, but the shocking lewdness of the act is enough for both of them.`;
-			} else if (canPenetrate(activeSlave) && _partnerSlave.missingLegs === 0 && activeSlave.missingArms === 0 && activeSlave.belly < 10000) {
+			} else if (canPenetrate(activeSlave) && hasBothLegs(_partnerSlave) && hasBothArms(activeSlave) && activeSlave.belly < 10000) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -936,7 +936,7 @@ window.loverSlave = function(activeSlave) {
 					t +=`ears and `;
 				}
 				t += `neck, cupping a breast with one hand, and lightly stimulating ${him2} with the other.`;
-			} else if (activeSlave.clit > 2 && canDoVaginal(activeSlave) && _partnerSlave.missingLegs === 0) {
+			} else if (activeSlave.clit > 2 && canDoVaginal(activeSlave) && hasBothLegs(_partnerSlave)) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -945,7 +945,7 @@ window.loverSlave = function(activeSlave) {
 					t += `on ${name}'s bedroll `;
 				}
 				t += `${_fuckSpot}, with ${partnerName} down on ${his2} knees in front of ${name}. From behind ${partnerName} it looks like ${he2}'s giving ${his2} ${activeSlaveRel} a conventional, if enthusiastic, blowjob. Only on closer inspection does it become clear how unusual the oral is: ${name} has such a huge clit that ${his} ${partnerSlaveRel} can suck ${him} off just like it were a penis.`;
-			} else if (_partnerSlave.vagina > 0 && canDoVaginal(_partnerSlave) && _partnerSlave.missingArms === 0 && _partnerSlave.missingLegs === 0 && (activeSlave.belly + _partnerSlave.belly < 10000)) {
+			} else if (_partnerSlave.vagina > 0 && canDoVaginal(_partnerSlave) && hasBothArms(_partnerSlave) && hasBothLegs(_partnerSlave) && (activeSlave.belly + _partnerSlave.belly < 10000)) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -960,7 +960,7 @@ window.loverSlave = function(activeSlave) {
 					t += `gazing longingly into ${his} face `;
 				}
 				t += `as ${he2} enjoys the feeling of ${his2} ${activeSlaveRel} fucking ${him2} with a strap-on.`;
-			} else if (_partnerSlave.anus > 0 && canDoAnal(_partnerSlave) && activeSlave.missingArms === 0 && activeSlave.belly < 10000) {
+			} else if (_partnerSlave.anus > 0 && canDoAnal(_partnerSlave) && hasBothArms(activeSlave) && activeSlave.belly < 10000) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -973,7 +973,7 @@ window.loverSlave = function(activeSlave) {
 					t +=`ears and `;
 				}
 				t += `neck, cupping a breast with one hand, and lightly stimulating ${him} with the other.`;
-			} else if (_partnerSlave.missingArms !== 3 && activeSlave.missingArms !== 3) {
+			} else if (hasAnyArms(_partnerSlave) && hasAnyArms(activeSlave)) {
 				if (_partnerSlave.ID === V.HeadGirl.ID && V.HGSuite === 1) {
 					t += `in bed `;
 				} else if (activeSlave.livingRules === "luxurious") {
@@ -1065,7 +1065,7 @@ window.loverSlave = function(activeSlave) {
 					case "dom":
 					case "sadist":
 						t += `sleeping in bed together. ${name} is spooning ${his} ${partnerSlaveRel} possessively`;
-						if (activeSlave.missingArms !== 3) {
+						if (hasAnyArms(activeSlave)) {
 							t += `, and even in ${his} sleep, has a proprietary hand on ${partnerName}'s `;
 							if (_partnerSlave.balls > 0) {
 								t += `balls`;
@@ -1087,7 +1087,7 @@ window.loverSlave = function(activeSlave) {
 							t += `${name} is spooning ${his} ${partnerSlaveRel} possessively, ${his} rounded belly pushing into ${his2} back.`;
 						} else if (_partnerSlave.belly >= 5000) {
 							t += `${name} is spooning ${his} ${partnerSlaveRel} possessively`;
-							if (activeSlave.missingArms !== 3) {
+							if (hasAnyArms(activeSlave)) {
 								t += `, and even in ${his} sleep, has a proprietary hand on ${partnerName}'s belly`;
 							}
 							t += `.`;
@@ -1096,7 +1096,7 @@ window.loverSlave = function(activeSlave) {
 						}
 						break;
 				}
-			} else if (_partnerSlave.dick > 6 && activeSlave.missingArms !== 3 && _fuckSeed > 30) {
+			} else if (_partnerSlave.dick > 6 && hasAnyArms(activeSlave) && _fuckSeed > 30) {
 				t += `sleeping in bed together. ${name} is cuddled up close to ${partnerName}, and is cradling ${his} ${partnerSlaveRel}'s enormous, soft cock with one hand.`;
 			} else if (activeSlave.height > _partnerSlave.height + 10) {
 				t += `sleeping in bed together, with the taller ${name} curled around ${his} little ${partnerSlaveRel}.`;
@@ -1104,7 +1104,7 @@ window.loverSlave = function(activeSlave) {
 				t += `sleeping in bed together, with the shorter ${name} curled under ${his} ${partnerSlaveRel}.`;
 			} else if (activeSlave.amp === 1) {
 				t += `sleeping in bed together; ${partnerName} is using ${his2} limbless ${activeSlaveRel} as a pillow.`;
-			} else if (activeSlave.missingArms !== 3 && _partnerSlave.missingArms !== 3) {
+			} else if (hasAnyArms(activeSlave) && hasAnyArms(_partnerSlave)) {
 				t += `resting in bed together, holding hands in their sleep.`;
 			} else {
 				t += `sleeping quietly in bed together.`;
@@ -1143,7 +1143,7 @@ window.loverSlave = function(activeSlave) {
 						break;
 					case "fitness":
 						t += `have just woken up. `;
-						if (activeSlave.missingLegs === 0) {
+						if (hasBothLegs(activeSlave)) {
 							t += `${name} is doing ${his} morning crunches, and ${his} ${partnerSlaveRel} is sleepily sitting on ${his} feet to help.`;
 						} else {
 							t += `${name} is doing ${his} morning exercises, and ${his} ${partnerSlaveRel} is sleepily sitting nearby, providing moral support.`;
@@ -1151,7 +1151,7 @@ window.loverSlave = function(activeSlave) {
 						break;
 					case "insecure":
 						t += `have just woken up. ${name} is getting dressed when ${his} ${partnerSlaveRel} `;
-						if ((canTalk(_partnerSlave) && canHear(activeSlave)) || (_partnerSlave.missingArms !== 3 && canSee(activeSlave))) {
+						if ((canTalk(_partnerSlave) && canHear(activeSlave)) || (hasAnyArms(_partnerSlave) && canSee(activeSlave))) {
 							t += `pays ${him} a compliment; ${name} blushes and gives ${partnerName} a kiss.`;
 						} else {
 							t += `demonstrates how much ${he2} adores ${his} body; ${name} blushes and gives ${partnerName} a kiss.`;
@@ -1204,11 +1204,11 @@ window.loverSlave = function(activeSlave) {
 					t += `tidying up their room together. ${partnerName} is chattering about ${his2} day, while ${name} listens quietly, smiling fondly at ${his} ${partnerSlaveRel}'s prattle.`;
 				} else if ((_partnerSlave.actualAge >= activeSlave.actualAge + 10) && canTalk(activeSlave) && canHear(_partnerSlave)) {
 					t += `tidying up their room together. ${name} is chattering about ${his} day, while ${partnerName} listens quietly, smiling fondly at ${his2} ${activeSlaveRel}'s prattle.`;
-				} else if (activeSlave.missingArms !== 3 && !canTalk(activeSlave) && canSee(_partnerSlave)) {
+				} else if (hasAnyArms(activeSlave) && !canTalk(activeSlave) && canSee(_partnerSlave)) {
 					t += `getting ready for bed. ${name} is using gestures to tell ${his} ${partnerSlaveRel} about ${his} day; ${partnerName} is very patient and does ${his2} best to follow.`;
 				} else if (canTalk(activeSlave) && canTalk(_partnerSlave) && canHear(activeSlave) && canHear(_partnerSlave)) {
 					t += `tidying up their room together. ${name} and ${partnerName} are chattering away over inconsequential things.`;
-				} else if (canSee(activeSlave) && canSee(_partnerSlave) && activeSlave.missingArms !== 3 && _partnerSlave.missingArms !== 3) {
+				} else if (canSee(activeSlave) && canSee(_partnerSlave) && hasAnyArms(activeSlave) && hasAnyArms(_partnerSlave)) {
 					t += `getting ready for bed. ${name} and ${partnerName} are rapidly gesturing to each other about their days.`;
 				} else {
 					t += `getting ready for bed. ${name} and ${his} ${partnerSlaveRel}, ${partnerName}, are leaning against one another, just enjoying each other's warmth.`;
@@ -1504,7 +1504,7 @@ window.walkPasts = function(slave, _seed) {
 					} else {
 						t += `deep throating a pair of customer's dicks.`;
 					}
-				} else if (_seed > 60 && slave.missingArms !== 3) {
+				} else if (_seed > 60 && hasAnyArms(slave)) {
 					t += `sucking one customer's cock while giving another a handjob.`;
 				} else if (_seed > 40) {
 					t += `eating out one customer's cunt while another `;
@@ -1636,9 +1636,9 @@ window.walkPasts = function(slave, _seed) {
 								t += `${He}'s letting another slave have her way with ${him}.`;
 								break;
 							case "sadist":
-								if (slave.missingArms === 0) {
+								if (hasBothArms(slave)) {
 									t += `${He}'s spanking another slave with one hand and fingering her with the other.`;
-								} else if (slave.missingArms !== 3) {
+								} else if (hasAnyArms(slave)) {
 									t += `${He}'s fingering another slave while teasing her nipple with ${his} teeth.`;
 								} else {
 									t += `${He}'s painfully teasing another slave's nipple with ${his} teeth.`;
@@ -1649,9 +1649,9 @@ window.walkPasts = function(slave, _seed) {
 								break;
 							case "boobs":
 								t += `${He} has a slave sucking on each of ${his} nipples`;
-								if (slave.missingArms === 0) {
+								if (hasBothArms(slave)) {
 									t += ` while ${he} gives each a handjob.`;
-								} else if (slave.missingArms !== 3) {
+								} else if (hasAnyArms(slave)) {
 									t += ` while ${he} gives one a handjob.`;
 								} else {
 									t += `.`;
@@ -1761,7 +1761,7 @@ window.walkPasts = function(slave, _seed) {
 				t += `walks past your desk with the confident gait encouraged by ${his} high heeled boots. ${He} is on ${his} way to `;
 			} else if (slave.shoes === "extreme heels") {
 				t += `walks past your desk with the tiny swaying steps ${he} must take in ${his} ridiculous heels. ${He} is on ${his} way to `;
-			} else if (slave.heels === 1 && slave.missingArms === 0 && slave.missingLegs === 0) {
+			} else if (slave.heels === 1 && hasBothArms(slave) && hasBothLegs(slave)) {
 				t += `crawls past your desk on all fours, since ${he} has not been allowed the heels ${he} needs to walk upright. ${He} is on ${his} way to `;
 			} else if (slave.missingLegs === 3) {
 				t += `is carried past your desk by one of your other slaves. ${He} is on ${his} way to `;
@@ -2439,7 +2439,7 @@ window.buttWatch = function(slave) {
 			break;
 		case "a slutty outfit":
 			t += `For today's slutty outfit ${he}'s chosen `;
-			if (jsRandom(1, 100) > 50 && slave.missingLegs !== 3) {
+			if (jsRandom(1, 100) > 50 && hasAnyLegs(slave)) {
 				t += `yoga pants so sheer that everything ${he}'s got is clearly visible.`;
 			} else {
 				t += `a miniskirt so brief that ${his} ass is hanging out the back, and a glimpse of ${his} goods is occasionally visible from the front.`;
diff --git a/src/npc/descriptions/fPoolSex.tw b/src/npc/descriptions/fPoolSex.tw
index 9c5c92d1a60..116232cbf64 100644
--- a/src/npc/descriptions/fPoolSex.tw
+++ b/src/npc/descriptions/fPoolSex.tw
@@ -6,7 +6,7 @@
 You order $him to meet you in the spa for some quality time in the penthouse's rejuvenating gelatin pool. When you get there, $he's already in $his bathing attire, reclined at the side of the pool farthest from you with $his massive $activeSlave.skin stomach hanging over the edge and half sunk in the thick, steaming ooze, flushed and sweaty.
 <<if $activeSlave.devotion > 95>>
 	<<if !isAmputee($activeSlave)>>
-		$He's resting $his head on one arm, but $he gives you a little wave <<if missingArms != 0>>anyway<<else>>with the other<</if>> before setting it to rubbing the flank of one
+		$He's resting $his head on one arm, but $he gives you a little wave <<if !hasBothArms($activeSlave)>>anyway<<else>>with the other<</if>> before setting it to rubbing the flank of one
 		<<if $activeSlave.boobs >= 20000>>
 			massively overgrown tit
 		<<elseif Math.floor($activeSlave.boobsImplant/$activeSlave.boobs) >= .60>>
diff --git a/src/pregmod/birthStorm.tw b/src/pregmod/birthStorm.tw
index cf19c2a52b9..635786d8c8c 100644
--- a/src/pregmod/birthStorm.tw
+++ b/src/pregmod/birthStorm.tw
@@ -116,11 +116,11 @@
 
 The remote surgery allows the removal of the pregnancy generator through conventional means, an injection to induce labor and the resulting birthing of the womb's contents.
 <<if $activeSlave.broodmother == 2>>
-	$activeSlave.slaveName's obscenely swollen belly begins to shudder and writhe moments after being injected with the drug as all $his waters break. $He spreads $his <<if hasBothLegs($activeSlave)>>legs to either side of $his spasming bulk<<elseif $activeSlave.missingLegs == 3>>stumps<<else>>leg and $his stump<</if>> as wide as $he can with a loud moan. $His vaginal lips part as the first of $his brood is born, followed by another, and another. After hours of constant
+	$activeSlave.slaveName's obscenely swollen belly begins to shudder and writhe moments after being injected with the drug as all $his waters break. $He spreads $his <<if hasBothLegs($activeSlave)>>legs to either side of $his spasming bulk<<elseif !hasAnyLegs($activeSlave)>>stumps<<else>>leg and $his stump<</if>> as wide as $he can with a loud moan. $His vaginal lips part as the first of $his brood is born, followed by another, and another. After hours of constant
 <<elseif $activeSlave.broodmother == 1>>
-	$activeSlave.slaveName's massive belly shudders and shrinks as all $his waters simultaneously break. $He spreads $his <<if hasBothLegs($activeSlave)>>legs<<elseif $activeSlave.missingLegs == 3>>stumps<<else>>leg and stump<</if>> wide with a loud moan. $His vaginal lips part as the first of $his brood is born, followed not long after by another. After an hour of constant
+	$activeSlave.slaveName's massive belly shudders and shrinks as all $his waters simultaneously break. $He spreads $his <<if hasBothLegs($activeSlave)>>legs<<elseif !hasAnyLegs($activeSlave)>>stumps<<else>>leg and stump<</if>> wide with a loud moan. $His vaginal lips part as the first of $his brood is born, followed not long after by another. After an hour of constant
 <<else>>
-	$activeSlave.slaveName's massive belly shudders and shrinks as all $his waters simultaneously break. $He spreads $his <<if hasBothLegs($activeSlave)>>legs<<elseif $activeSlave.missingLegs == 3>>stumps<<else>>leg and stump<</if>> wide with a loud moan. $His vaginal lips part as $his birthing begins. After an hour of intensive
+	$activeSlave.slaveName's massive belly shudders and shrinks as all $his waters simultaneously break. $He spreads $his <<if hasBothLegs($activeSlave)>>legs<<elseif !hasAnyLegs($activeSlave)>>stumps<<else>>leg and stump<</if>> wide with a loud moan. $His vaginal lips part as $his birthing begins. After an hour of intensive
 <</if>>
 <<if $activeSlave.fetish == "mindbroken">>
 	birthing, $he shows little interest in the changes to $his body. @@.red;The ordeal of intensive birthing has had a massive effect on $his health as well as completely destroying $his vagina.@@
diff --git a/src/pregmod/fPat.tw b/src/pregmod/fPat.tw
index d138c1f2753..2c7516bd096 100644
--- a/src/pregmod/fPat.tw
+++ b/src/pregmod/fPat.tw
@@ -124,11 +124,11 @@ You tell $activeSlave.slaveName to
 
 You walk around $him, drawing closer and slowly resting your hand on $his head. You let it rest for a few seconds to get $him accustomed to your touch.
 <<if ($activeSlave.fetish == "mindbroken")>>
-	Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your poor mentally shattered slave's inability to resist you. $He initially reacts slightly to your physical touch, but soon stops reacting completely. Nevertheless, you continue to gingerly stroke $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>shaven scalp <<else>>hair <</if>>, as you gently press $his body into your chest<<if $activeSlave.missingLegs == 3>> and onto your lap<</if>>. The warmth from your slave's body, and the action of petting $his head, combined with the sound of $his breathing, allow you to feel more relaxed by the minute.
+	Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your poor mentally shattered slave's inability to resist you. $He initially reacts slightly to your physical touch, but soon stops reacting completely. Nevertheless, you continue to gingerly stroke $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>shaven scalp <<else>>hair <</if>>, as you gently press $his body into your chest<<if !hasAnyLegs($activeSlave)>> and onto your lap<</if>>. The warmth from your slave's body, and the action of petting $his head, combined with the sound of $his breathing, allow you to feel more relaxed by the minute.
 <<elseif ($activeSlave.relationship == -3) && $activeSlave.devotion+$activeSlave.trust >= 175>>
-	Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your slave's utterly willing submission. $He slowly leans $his body closer and closer to you<<if $activeSlave.missingLegs == 3>> and finally onto your lap<</if>>, relaxing as $he feels your caress. As $he shifts $his weight to your chest, $he feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes $his lips. You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content $wife.
+	Tenderly and lovingly you brush your fingers along $his head, enjoying the feeling of your slave's utterly willing submission. $He slowly leans $his body closer and closer to you<<if !hasAnyLegs($activeSlave)>> and finally onto your lap<</if>>, relaxing as $he feels your caress. As $he shifts $his weight to your chest, $he feels all of the daily stresses of the day melt away, and a deep, happy sigh escapes $his lips. You smile fondly, allowing all of the troubles of being an arcology owner dissipate, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content $wife.
 <<elseif ($activeSlave.relationship == -2)>>
-	Tenderly and lovingly you brush your fingers along $his head, for a moment, appreciating how easily your slave submits to your desire to pat $his head. $He slowly leans $his body closer and closer to you<<if $activeSlave.missingLegs == 3>> allowing you to move $him onto your lap<</if>>, relaxing as $he feels your caresses. As $his weight falls onto you, all of the stress from $his body melts away, and a small, respectful sigh escapes $his pursed lips. You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content servant.
+	Tenderly and lovingly you brush your fingers along $his head, for a moment, appreciating how easily your slave submits to your desire to pat $his head. $He slowly leans $his body closer and closer to you<<if !hasAnyLegs($activeSlave)>> allowing you to move $him onto your lap<</if>>, relaxing as $he feels your caresses. As $his weight falls onto you, all of the stress from $his body melts away, and a small, respectful sigh escapes $his pursed lips. You smile fondly, allowing all of the troubles of being an arcology owner drift away, in a similar fashion to your slave. For now, just for now, you are just a _womanP and _hisP devoted and content servant.
 <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && (hasAnyArms($activeSlave))>>
 	As you start to touch $him $he smiles at you and takes your hand, following its movements. You tenderly and lovingly kiss it and let it rest on the side of $his head, before continuing with your ministrations. As opposed to your more submissive slaves, $activeSlave.slaveName takes an active role in your petting, gently guiding where your hand goes along $his head. You enjoy the feel of $his hand on yours, as well as $his <<if $activeSlave.hStyle == "shaved bald" || $activeSlave.bald == 1>>smooth scalp<<else>> hair<</if>>.
 <<elseif ($activeSlave.devotion > 50) && ($activeSlave.fetish == "submissive") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw
index fdbca826007..73be96ea254 100644
--- a/src/pregmod/sePlayerBirth.tw
+++ b/src/pregmod/sePlayerBirth.tw
@@ -108,13 +108,13 @@ While sitting at your desk planning your day, @@.lime;your water breaks,@@ thoro
 	After what feels like a <<if $showInches == 2>>mile<<else>>kilometer<</if>> run, you finally waddle into your destination finding
 	<<if $Nurse != 0>>
 		<<setLocalPronouns $Nurse>>
-		@@.pink;$Nurse.slaveName@@ waiting for you with everything $he needs to be a capable midwife to you.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if $Concubine.missingArms != 3>>wraps _his2 arm<<if $Concubine.missingArms == 0>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>>
+		@@.pink;$Nurse.slaveName@@ waiting for you with everything $he needs to be a capable midwife to you.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if hasAnyArms($Concubine)>>wraps _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>>
 	<<elseif $Bodyguard != 0>>
 		<<setLocalPronouns $Bodyguard>>
-		@@.pink;$Bodyguard.slaveName@@ waiting for you. Ever since $he realized $he was protecting for <<if $PC.pregType > 1>>many<<else>>two<</if>>, $he made sure to hone $his skills as a midwife to make sure $he could protect you and your unborn child<<if $PC.pregType > 1>>ren<</if>> from any dangers.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if $Concubine.missingArms != 3>>wraps _his2 arm<<if $Concubine.missingArms == 0>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>>
+		@@.pink;$Bodyguard.slaveName@@ waiting for you. Ever since $he realized $he was protecting for <<if $PC.pregType > 1>>many<<else>>two<</if>>, $he made sure to hone $his skills as a midwife to make sure $he could protect you and your unborn child<<if $PC.pregType > 1>>ren<</if>> from any dangers.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if hasAnyArms($Concubine)>>wraps _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>>
 	<<elseif $HeadGirl != 0>>
 		<<setLocalPronouns $HeadGirl>>
-		@@.pink;$HeadGirl.slaveName@@ is waiting for you. $He promises to do everything $he can to help you.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if $Concubine.missingArms != 3>>wraps _his2 arm<<if $Concubine.missingArms == 0>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>>
+		@@.pink;$HeadGirl.slaveName@@ is waiting for you. $He promises to do everything $he can to help you.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ <<if hasAnyArms($Concubine)>>wraps _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>leans into<</if>> you from behind, letting you know _he2'll be here to comfort you while you labor.<</if>>
 	<<elseif _concubinePresent == 1>>
 		@@.pink;$Concubine.slaveName@@ is waiting for you. _He2 believes, if anything, that _he2 could at least comfort you while you give birth.
 	<<else>>
@@ -125,13 +125,13 @@ While sitting at your desk planning your day, @@.lime;your water breaks,@@ thoro
 	You barely make it half-way down the hall before you feel the first of your many children drop into position at the entrance to your birth canal. You try to keep going, but as it forces its way through your pelvis, spreading it wider, you're forced to the ground. Fortunately the penthouse is littered with supply rooms and closets, so you drag your laboring body into the nearest one instead. Fortunately, $assistantName discretely directs
 	<<if $Nurse != 0>>
 		<<setLocalPronouns $Nurse>>
-		@@.pink;$Nurse.slaveName@@ to you with everything $he'll need to deliver your child<<if $PC.pregType > 1>>ren<</if>>.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if $Concubine.missingArms != 3>>wrapping _his2 arm<<if $Concubine.missingArms == 0>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>>
+		@@.pink;$Nurse.slaveName@@ to you with everything $he'll need to deliver your child<<if $PC.pregType > 1>>ren<</if>>.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms($Concubine)>>wrapping _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>>
 	<<elseif $Bodyguard != 0>>
 		<<setLocalPronouns $Bodyguard>>
-		@@.pink;$Bodyguard.slaveName@@ to your location. Ever since $he realized $he was protecting for not only you, but the lives you bear too, $he made sure to hone $his skills as a midwife to make sure $he could protect you and your unborn child<<if $PC.pregType > 1>>ren<</if>> from any dangers. $He apologizes profusely for not being there when you needed $him most; $he wanted to make sure everything was ready for your arrival.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if $Concubine.missingArms != 3>>wrapping _his2 arm<<if $Concubine.missingArms == 0>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>>
+		@@.pink;$Bodyguard.slaveName@@ to your location. Ever since $he realized $he was protecting for not only you, but the lives you bear too, $he made sure to hone $his skills as a midwife to make sure $he could protect you and your unborn child<<if $PC.pregType > 1>>ren<</if>> from any dangers. $He apologizes profusely for not being there when you needed $him most; $he wanted to make sure everything was ready for your arrival.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms($Concubine)>>wrapping _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>>
 	<<elseif $HeadGirl != 0>>
 		<<setLocalPronouns $HeadGirl>>
-		@@.pink;$HeadGirl.slaveName@@ to your location. $He promises to do everything $he can to help you.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if $Concubine.missingArms != 3>>wrapping _his2 arm<<if $Concubine.missingArms == 0>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>>
+		@@.pink;$HeadGirl.slaveName@@ to your location. $He promises to do everything $he can to help you.<<if _concubinePresent == 1>> @@.pink;$Concubine.slaveName@@ bursts in after $him and circles around behind you before <<if hasAnyArms($Concubine)>>wrapping _his2 arm<<if hasBothArms($Concubine)>>s<</if>> around<<else>>nuzzling against<</if>> your contraction wracked middle. _He2'll be here to comfort you while you labor.<</if>>
 	<<elseif _concubinePresent == 1>>
 		@@.pink;$Concubine.slaveName@@ to your location. _He2 believes, if anything, that _he2 could at least comfort you while you give birth.
 	<<else>>
diff --git a/src/pregmod/widgets/bodySwapReaction.tw b/src/pregmod/widgets/bodySwapReaction.tw
index cdffa6e1c8e..737302c64e3 100644
--- a/src/pregmod/widgets/bodySwapReaction.tw
+++ b/src/pregmod/widgets/bodySwapReaction.tw
@@ -157,7 +157,7 @@ Now you only have to wait for $him to wake up.
 				<<if !canSee($args[0])>>
 					finger. $He traces $his
 					<<if $args[1].physicalAge < 40>>
-						arm and feels the @@.red;wrinkles in $his skin.@@ With a despondent note, $he lowers $his hand<<if $args[0].missingArms == 0>>s<</if>> back to $his side<<if $args[0].missingArms == 0>>s<</if>>.
+						arm and feels the @@.red;wrinkles in $his skin.@@ With a despondent note, $he lowers $his hand<<if hasBothArms($args[0])>>s<</if>> back to $his side<<if hasBothArms($args[0])>>s<</if>>.
 					<<else>>
 						arm, feeling just @@.red;how much older@@ $he is.
 					<</if>>
@@ -179,7 +179,7 @@ Now you only have to wait for $him to wake up.
 		<</if>>
 
 		/* ear changes - WIP for future ear shape options */
-		$He runs $his hand<<if $args[0].missingArms == 0>>s<</if>> over $his ears, finding
+		$He runs $his hand<<if hasBothArms($args[0])>>s<</if>> over $his ears, finding
 		<<if $args[0].hears <= -2 && $args[1].hears > -2>>
 			that, @@.gold;much to $his horror,@@ there is nothing closing up $his ear canals, and this @@.red;world of silence@@ is $his new reality.
 			<<set $args[0].trust -= 15>>
@@ -267,7 +267,7 @@ Now you only have to wait for $him to wake up.
 			body.
 		<</if>>
 
-		As $he settles $himself, $he <<if canSee($args[0])>>takes a look down, <</if>>brings $his hand<<if $args[0].missingArms == 0>>s<</if>> to $his chest
+		As $he settles $himself, $he <<if canSee($args[0])>>takes a look down, <</if>>brings $his hand<<if hasBothArms($args[0])>>s<</if>> to $his chest
 
 		/*(breast changes)*/
 		<<if $args[0].boobsImplant > 0 && $args[1].boobsImplant > 0>> /*(breast implants)*/
@@ -321,7 +321,7 @@ Now you only have to wait for $him to wake up.
 				<<if $args[0].fetish == "mindbroken">>
 					breasts. As $he examines them closer, $he seems to understand that @@.lime;they are bigger now.@@
 				<<elseif $args[0].devotion > 20>>
-					@@.lime;$his bust has grown.@@ $He is caught off guard at the size of $his new chest. $He bounces them in $his palm<<if $args[0].missingArms == 0>>s<</if>>, marveling at their mass.
+					@@.lime;$his bust has grown.@@ $He is caught off guard at the size of $his new chest. $He bounces them in $his palm<<if hasBothArms($args[0])>>s<</if>>, marveling at their mass.
 				<<else>>
 					@@.lime;$his chest is heavier than ever.@@ However, $he is well aware however that these breasts are not for $his benefit or pleasure. $He views this as a @@.mediumorchid;cruel manipulation of $his body@@ on top of what has already been done to $him.
 					<<set $args[0].devotion -= 5>>
@@ -407,7 +407,7 @@ Now you only have to wait for $him to wake up.
 				<<if $args[0].fetish == "mindbroken">>
 					breasts. As $he examines them closer, $he seems to understand that @@.lime;they are bigger now.@@
 				<<elseif $args[0].devotion > 20>>
-					@@.lime;$his bust has grown.@@ $He is caught off guard at the size of $his new chest. $He bounces them in $his palm<<if $args[0].missingArms == 0>>s<</if>>, marveling at their firmness.
+					@@.lime;$his bust has grown.@@ $He is caught off guard at the size of $his new chest. $He bounces them in $his palm<<if hasBothArms($args[0])>>s<</if>>, marveling at their firmness.
 				<<else>>
 					@@.lime;$his chest is heavy with implants.@@ However, $he is well aware however that these breasts are not for $his benefit or pleasure. $He views this as a @@.mediumorchid;cruel manipulation of $his body@@ on top of what has already been done to $him.
 					<<set $args[0].devotion -= 5>>
@@ -491,7 +491,7 @@ Now you only have to wait for $him to wake up.
 				<<if $args[0].fetish == "mindbroken">>
 					breasts. As $he examines them, $he seems to understand that @@.lime;they are bigger now.@@
 				<<elseif $args[0].devotion > 20>>
-					@@.lime;and finds $his bust has grown.@@ $He is caught off guard at the size of $his new chest. $He bounces them in $his palm<<if $args[0].missingArms == 0>>s<</if>>, marveling at the motion of silicone free flesh.
+					@@.lime;and finds $his bust has grown.@@ $He is caught off guard at the size of $his new chest. $He bounces them in $his palm<<if hasBothArms($args[0])>>s<</if>>, marveling at the motion of silicone free flesh.
 				<<else>>
 					@@.lime;and finds $his chest is heavier than ever, and not because of silicone.@@ However, $he is well aware however that these breasts are not for $his benefit or pleasure. $He views this as a @@.mediumorchid;cruel manipulation of $his body@@ on top of what has already been done to $him.
 					<<set $args[0].devotion -= 5>>
@@ -573,7 +573,7 @@ Now you only have to wait for $him to wake up.
 				<<if $args[0].fetish == "mindbroken">>
 					and finds breasts. As $he examines them, $he seems to understand that @@.lime;they are bigger now.@@
 				<<elseif $args[0].devotion > 20>>
-					and finds @@.lime;$his bust has grown.@@ $He is caught off guard at the size of $his new chest. $He bounces them in $his palm<<if $args[0].missingArms == 0>>s<</if>>, marveling at the motion of $his soft flesh.
+					and finds @@.lime;$his bust has grown.@@ $He is caught off guard at the size of $his new chest. $He bounces them in $his palm<<if hasBothArms($args[0])>>s<</if>>, marveling at the motion of $his soft flesh.
 				<<else>>
 					and finds that @@.lime;$his chest is heavier than ever.@@ However, $he is well aware however that these breasts are not for $his benefit or pleasure. $He views this as a @@.mediumorchid;cruel manipulation of $his body@@ on top of what has already been done to $him.
 					<<set $args[0].devotion -= 5>>
@@ -798,7 +798,7 @@ Now you only have to wait for $him to wake up.
 		<</if>>
 
 		<br><br>
-		$He <<if canSee($args[0])>>takes in<<else>>runs $his hand<<if $args[0].missingArms == 0>>s<</if>> across<</if>> $his new figure.
+		$He <<if canSee($args[0])>>takes in<<else>>runs $his hand<<if hasBothArms($args[0])>>s<</if>> across<</if>> $his new figure.
 
 		<<if $args[0].fetish != "mindbroken" && canSee($args[0])>>
 			<<if $args[0].race != $args[1].race>> /*(race changes)*/
@@ -1084,7 +1084,7 @@ Now you only have to wait for $him to wake up.
 		<<set _weightChange = 0>> /*used to segway to weight after pregnancy/belly implants*/
 		<<if $args[0].pregKnown == 1 && $args[1].preg > 0>>
 			<br><br>
-			$His hand<<if $args[0].missingArms == 0>>s<</if>> drift<<if $args[0].missingArms != 0>>s<</if>> over $his stomach,
+			$His hand<<if hasBothArms($args[0])>>s<</if>> drift<<if !hasBothArms($args[0])>>s<</if>> over $his stomach,
 			<<if $args[0].bellyPreg < 100>>
 				<<if $args[0].counter.birthsTotal == 0>>
 					but $he's too inexperienced to recognize $his @@.pink;early pregnancy.@@
@@ -1125,7 +1125,7 @@ Now you only have to wait for $him to wake up.
 			<<set _weightChange = 1>>
 		<<elseif $args[0].bellyImplant > $args[1].bellyImplant && $args[0].bellyImplant >= 100>> /*belly implant filled*/
 			<br><br>
-			$His hand<<if $args[0].missingArms == 0>>s<</if>> drift<<if $args[0].missingArms != 0>>s<</if>> over $his stomach, where $he
+			$His hand<<if hasBothArms($args[0])>>s<</if>> drift<<if !hasBothArms($args[0])>>s<</if>> over $his stomach, where $he
 			<<if $args[0].bellyImplant >= 450000>>
 				finds there is no chance of $him reaching $his navel across $his @@.pink;massive middle.@@
 			<<elseif $args[0].bellyImplant >= 150000>>
@@ -1171,7 +1171,7 @@ Now you only have to wait for $him to wake up.
 			<<set _weightChange = 1>>
 		<<elseif $args[0].pregKnown == 0 && $args[1].pregKnown == 1>>
 			<br><br>
-			$His hand<<if $args[0].missingArms == 0>>s<</if>> drift<<if $args[0].missingArms != 0>>s<</if>> over $his stomach, where $he discovers $he is @@.pink;no longer pregnant.@@
+			$His hand<<if hasBothArms($args[0])>>s<</if>> drift<<if !hasBothArms($args[0])>>s<</if>> over $his stomach, where $he discovers $he is @@.pink;no longer pregnant.@@
 			<<if $args[0].fetish == "pregnancy">>
 				<<if $args[0].devotion > 50>>
 					$He @@.mediumorchid;scowls with momentary wrath@@ before regaining $his composure. $He resents being separated from $his pregnancy<<if canGetPregnant($args[0])>>, though that is easily remedied<</if>>.
@@ -1196,7 +1196,7 @@ Now you only have to wait for $him to wake up.
 			<<set _weightChange = 1>>
 		<<elseif ($args[0].bellyImplant < $args[1].bellyImplant)>> /*belly implant reduced*/
 			<br><br>
-			$His hand<<if $args[0].missingArms == 0>>s<</if>> drift<<if $args[0].missingArms != 0>>s<</if>> over $his stomach, where $he
+			$His hand<<if hasBothArms($args[0])>>s<</if>> drift<<if !hasBothArms($args[0])>>s<</if>> over $his stomach, where $he
 			<<if $args[0].bellyImplant >= 450000>>
 				finds there is @@.pink;still no chance of $him reaching $his navel across $his massive middle.@@
 			<<elseif $args[0].bellyImplant >= 150000>>
@@ -1224,7 +1224,7 @@ Now you only have to wait for $him to wake up.
 		/*stomach*/
 		<<if _weightChange != 1>>
 			<br><br>
-			$His hand<<if $args[0].missingArms == 0>>s<</if>> drift<<if $args[0].missingArms != 0>>s<</if>> over
+			$His hand<<if hasBothArms($args[0])>>s<</if>> drift<<if !hasBothArms($args[0])>>s<</if>> over
 		<<else>>
 			$He continues to fondle
 		<</if>>
@@ -1356,7 +1356,7 @@ Now you only have to wait for $him to wake up.
 		<</if>>
 
 		<br><br>
-		As $his hand<<if $args[0].missingArms == 0>>s<</if>> wander<<if $args[0].missingArms != 0>>s<</if>> lower,
+		As $his hand<<if hasBothArms($args[0])>>s<</if>> wander<<if !hasBothArms($args[0])>>s<</if>> lower,
 
 		/*(changed genitals)*/
 		<<if $args[1].vagina > -1>> /*(had a vagina)*/
@@ -1479,7 +1479,7 @@ Now you only have to wait for $him to wake up.
 					amazing addition to $his body is @@.hotpink;surely welcome.@@ $He moans as $he fondles $his new balls, groaning as $he rolls their weight around. $His face is flushed by the time $he's done "examining" them.
 					<<set $args[0].devotion += 5>>
 				<<else>>
-					addition to $his body is @@.mediumaquamarine;annoying,@@ clearly. The frustrated irritation on $his face contrasts sharply with the actions of $his hand<<if $args[0].missingArms == 0>>s<</if>>, which <<if $args[0].missingArms == 0>>are<<else>>is<</if>> busy causing <<if $args[0].dick>>$his dick to become engorged with blood<<else>>precum to start flowing freely<</if>>. Catching $himself, $he takes a few soothing breaths to calm $his body down.
+					addition to $his body is @@.mediumaquamarine;annoying,@@ clearly. The frustrated irritation on $his face contrasts sharply with the actions of $his hand<<if hasBothArms($args[0])>>s<</if>>, which <<if hasBothArms($args[0])>>are<<else>>is<</if>> busy causing <<if $args[0].dick>>$his dick to become engorged with blood<<else>>precum to start flowing freely<</if>>. Catching $himself, $he takes a few soothing breaths to calm $his body down.
 					<<set $args[0].trust += 5>>
 				<</if>>
 			<<elseif $args[0].balls > $args[1].balls>>
@@ -1598,7 +1598,7 @@ Now you only have to wait for $him to wake up.
 				a fair bit.
 			<</if>>
 			<<if $args[0].fetish == "mindbroken">>
-				As soon as $his hand<<if $args[0].missingArms == 0>>s<</if>> leave<<if $args[0].missingArms != 0>>s<</if>> its mass does $he forget it wasn't always this big.
+				As soon as $his hand<<if hasBothArms($args[0])>>s<</if>> leave<<if !hasBothArms($args[0])>>s<</if>> its mass does $he forget it wasn't always this big.
 			<<elseif $args[0].devotion > 20>>
 				This is a pleasing development as $he looks forward to putting this new rear to the test with you.
 			<<else>>
@@ -3061,7 +3061,7 @@ Now you only have to wait for $him to wake up.
 					<</if>>
 				<<else>>
 					<<if $args[0].dick > $args[1].dick + 4>>
-						@@.mediumaquamarine;incredibly aggravated@@ about this change. This is just one more thing $he has to deal with now. How dare you give $him such a massive, throbbing, sensitive piece of meat <<if $args[0].missingLegs == 0>>between $his legs<<else>>on $his crotch<</if>>! $His glower loses its bite as you note $him subconsciously thrusting $his ridiculously enlarged organ against the sheets. $He stops after $he realizes what $he is doing, nervously staying completely still to not blast a load out of $his massive prick.
+						@@.mediumaquamarine;incredibly aggravated@@ about this change. This is just one more thing $he has to deal with now. How dare you give $him such a massive, throbbing, sensitive piece of meat <<if hasBothLegs($args[0])>>between $his legs<<else>>on $his crotch<</if>>! $His glower loses its bite as you note $him subconsciously thrusting $his ridiculously enlarged organ against the sheets. $He stops after $he realizes what $he is doing, nervously staying completely still to not blast a load out of $his massive prick.
 						<<set $args[0].trust += 3>>
 					<<elseif $args[0].dick > $args[1].dick>>
 						annoyed at this development. $He frowns as $he tests $his newfound growth, only thrusting once before <<if canSee($args[0])>>noticing your amused grin<<else>>sensing your gaze<</if>> and stopping.
diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw
index a215ba09af5..221ff0ea15d 100644
--- a/src/pregmod/widgets/pregmodBirthWidgets.tw
+++ b/src/pregmod/widgets/pregmodBirthWidgets.tw
@@ -14,7 +14,7 @@
 	<<if !canWalk($slaves[$i])>>
 		<<if $slaves[$i].fetish == "mindbroken">>
 			<<if (random(1,20) > $suddenBirth)>>
-				$He is helped back to $his bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if $slaves[$i].missingArms != 3>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
+				$He is helped back to $his bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if hasAnyArms($slaves[$i])>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
 			<<else>>
 				$slaves[$i].slaveName is awoken from $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body.
 				<<ClothingBirth>>
@@ -32,7 +32,7 @@
 	<<else>>
 		<<if $slaves[$i].fetish == "mindbroken">>
 			<<if (random(1,20) > $suddenBirth)>>
-				$He returns to $his bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if $slaves[$i].missingArms != 3>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
+				$He returns to $his bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if hasAnyArms($slaves[$i])>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
 			<<else>>
 				$slaves[$i].slaveName is awoken from $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body.
 				<<ClothingBirth>>
@@ -1112,7 +1112,7 @@
 	<<if !canWalk($slaves[$i])>>
 		<<if $slaves[$i].fetish == "mindbroken">>
 			<<if (random(1,20) > $suddenBirth)>>
-				$He is helped back to $his bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if $slaves[$i].missingArms != 3>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
+				$He is helped back to $his bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if hasAnyArms($slaves[$i])>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
 			<<else>>
 				$slaves[$i].slaveName is awoken from $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body.
 				<<ClothingBirth>>
@@ -1120,7 +1120,7 @@
 			<</if>>
 		<<else>>
 			<<if (random(1,20) > $suddenBirth)>>
-				$He is helped back to $his bed and stripped before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over<<if $slaves[$i].missingArms != 3>>, cradling $his heavily rounded middle,<</if>> and dozes off.
+				$He is helped back to $his bed and stripped before slipping into it. $He makes $himself comfortable and begins working on birthing <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. $He rolls over<<if hasAnyArms($slaves[$i])>>, cradling $his heavily rounded middle,<</if>> and dozes off.
 			<<else>>
 				$slaves[$i].slaveName is awoken from $his rest by a moist sensation followed by a contraction. $He rolls over and clutches $his gravid belly as another contraction wracks $his body.
 				<<ClothingBirth>>
@@ -1130,7 +1130,7 @@
 	<<else>>
 		<<if $slaves[$i].fetish == "mindbroken">>
 			<<if (random(1,20) > $suddenBirth)>>
-				$He returns to $his bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if $slaves[$i].missingArms != 3>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
+				$He returns to $his bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if hasAnyArms($slaves[$i])>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
 			<<else>>
 				$slaves[$i].slaveName is awoken from $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body.
 				<<ClothingBirth>>
@@ -1153,7 +1153,7 @@
 	<<if !canWalk($slaves[$i])>>
 		<<if $slaves[$i].fetish == "mindbroken">>
 			<<if (random(1,20) > $suddenBirth)>>
-				$He is helped back to $his bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if $slaves[$i].missingArms != 3>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
+				$He is helped back to $his bed and stripped before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if hasAnyArms($slaves[$i])>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
 			<<else>>
 				<<if _birthScene >= 50>>
 					$slaves[$i].slaveName is awoken from $his rest by a strong contraction. $He rolls over and begins to fall back to sleep as another contraction wracks $his body.
@@ -1188,7 +1188,7 @@
 	<<else>>
 		<<if $slaves[$i].fetish == "mindbroken">>
 			<<if (random(1,20) > $suddenBirth)>>
-				$He returns to $his bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if $slaves[$i].missingArms != 3>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
+				$He returns to $his bed and strips before slipping into it. Instinctively, $he begins to push out <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $His child is promptly taken and $he is encouraged to keep resting. <<if hasAnyArms($slaves[$i])>>$He runs $his hand<<if hasBothArms($slaves[$i])>>s<</if>> across the still huge dome of $his middle; to<<else>>To<</if>> $him, gravidity and birth is nothing out of the ordinary.
 			<<else>>
 				<<if _birthScene >= 50>>
 					While wandering the penthouse absentmindedly, $slaves[$i].slaveName's body begins to birth <<if $slaves[$i].counter.birthsTotal == 0>>$his first<<else>>this week's<</if>> baby. $He carries on until the contractions drag $him to $his knees.
diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw
index a2c064a30c6..b7c25f3b642 100644
--- a/src/uncategorized/PESS.tw
+++ b/src/uncategorized/PESS.tw
@@ -382,7 +382,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 	<<replace "#result">>
 	When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he <<if canSee($activeSlave)>>sees<<else>>figures out<</if>> the kind of lovemaking you're in the mood for, $he <<if hasAnyArms($activeSlave)>>spreads $his arm<<if hasBothArms($activeSlave)>>s<</if>><<else>>presents $himself<</if>> for you, smiling gently. $He kisses you lovingly, <<if !canTalk($activeSlave) && hasAnyArms($activeSlave)>>taking your hand in $hers and drawing a heart on your palm with one finger.<<elseif canTalk($activeSlave)>><<say>>ing, "<<Master>>, I love you."<<else>>giving you a sultry look<</if>>
 	<<if ($PC.vagina == 1)>>
-		$He lies on $his side <<if hasBothLegs($activeSlave)>>and raises one leg for you so you can straddle the other<<elseif $activeSlave.missingLegs == 3>>wiggles $his leg stumps<<else>>motions for you to straddle $his leg<</if>>, sliding up to press your pussy against $his submissive groin. You grind against $him; the stimulation is so strong that $he writhes into the sheets, panting and whining.
+		$He lies on $his side <<if hasBothLegs($activeSlave)>>and raises one leg for you so you can straddle the other<<elseif !hasAnyLegs($activeSlave)>>wiggles $his leg stumps<<else>>motions for you to straddle $his leg<</if>>, sliding up to press your pussy against $his submissive groin. You grind against $him; the stimulation is so strong that $he writhes into the sheets, panting and whining.
 		<<if $PC.dick == 1>>
 			Your stiff dick, unused for once, slides deliciously between your warm bodies.
 		<</if>>
diff --git a/src/uncategorized/REFI.tw b/src/uncategorized/REFI.tw
index 3bbfcedc17b..7125774eb82 100644
--- a/src/uncategorized/REFI.tw
+++ b/src/uncategorized/REFI.tw
@@ -1502,7 +1502,7 @@ There was a glint of envy <<if canSee($activeSlave)>>in $his eyes when $he saw<<
 	<<if !hasAnyArms($activeSlave) && !canTalk($activeSlave)>>
 		$he sticks $his chest out as far as it will go, and wiggles it back and forth demonstratively.
 	<<elseif !canTalk($activeSlave)>>
-		$he tries to depict suckling and orgasm with $his hand<<if $activeSlave.missingArms == 0>>s<</if>>, but gives up and just sticks $his tits out at you<<if $activeSlave.nipples == "fuckable">> while fingering $his nipplecunts<<else>>, pinching $his nipples hard<</if>>.
+		$he tries to depict suckling and orgasm with $his hand<<if hasBothArms($activeSlave)>>s<</if>>, but gives up and just sticks $his tits out at you<<if $activeSlave.nipples == "fuckable">> while fingering $his nipplecunts<<else>>, pinching $his nipples hard<</if>>.
 	<<else>>
 		"Plea<<s>>e u<<s>>e my boob<<s>>, <<Master>>!"
 	<</if>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 8648a0bebcf..8262273f30f 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -14855,7 +14855,7 @@ brought in to you. This time <<EventNameLink>> has been sent to deliver it. $He
 		<</if>>
 		in order to eat, each slave must ride $activeSlave.slaveName for as long as it takes to suck down their meal<<if $activeSlave.belly >= 5000>> (given the _belly mass jutting from $his middle, it should be quite the sight)<</if>>. $activeSlave.slaveName gapes at you openmouthed for a long moment, looking like $he wants to @@.hotpink;declaim a speech of thanks,@@ but you cut $him off by pointing peremptorily at $his place; $he almost runs over, $his @@.mediumaquamarine;trust in your whim@@ nearly absolute. But the true shape of your plan isn't apparent yet. When the first slave seats _himselfU on $activeSlave.slaveName and starts sucking off the dispenser dildo, you crouch behind _himU and insert yourself as well; the bitch is now airtight. _HeU gags and splutters with the discomfort but keeps working away until _heU gets _hisU meal down and struggles off the three phalluses _heU has in _himU. The next in line gets to it with some trepidation: and so it goes, slave by slave.
 		<<for _ress = 0; _ress < $slaves.length; _ress++>>
-			<<if _targetJobs.includes($slaves[_ress].assignment) && $slaves[_ress].missingLegs != 3 && $slaves[_ress].relationship != -3 && _ress.ID != $activeSlave.ID>>
+			<<if _targetJobs.includes($slaves[_ress].assignment) && hasAnyLegs($slaves[_ress]) && $slaves[_ress].relationship != -3 && _ress.ID != $activeSlave.ID>>
 				<<if canDoAnal($slaves[_ress]) && canDoVaginal($slaves[_ress])>>
 					<<if $slaves[_ress].anus == 0 && $slaves[_ress].vagina == 0>>
 						<<set _virgins = 1>>
diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw
index cf2946e2473..ea93cf3d2b9 100644
--- a/src/uncategorized/RETS.tw
+++ b/src/uncategorized/RETS.tw
@@ -640,13 +640,13 @@ $activeSlave.slaveName chuckles into $subSlave.slaveName's ear, crooning,
 <<setSpokenPlayerPronouns $activeSlave>>
 $He grinds against the wilting $subSlave.slaveName, and then continues, "I felt your <<if ($subSlave.butt > 4)>>fat butt<<elseif ($subSlave.butt > 2)>>big butt<<else>>tiny little butt<</if>> clench ju<<s>>t now." $He gives $subSlave.slaveName's <<if ($subSlave.balls > 0 && $subSlave.scrotum > 0)>>balls a gentle squeeze<<elseif ($subSlave.dick > 0)>>dick a gentle tug<<elseif $subSlave.vagina == -1>>butthole a gentle massage<<else>>pussylips a gentle massage<</if>>. "<<HeP>> ha<<s>>n't fucked you back there yet, ha<<s>> <<heP>>? It'<<s>> going to hurt, you little bitch. <<HeP>>'<<s>> going to hold you down and <<sh>>ove <<hisP>> <<if $PC.dick == 1>>huge cockhead<<else>>bigge<<s>>t <<s>>trap-on<</if>> right up again<<s>>t thi<<s>> tight little hole." $He gropes the quivering slave's virgin anus, careful not to penetrate it. "You're going to do your be<<s>>t to relax like a good little _girl2. But it'<<s>> going to be so big. It'<<s>> going to burn. And then you're going to panic, and <<s>>truggle, and <<heP>>'<<s>> going to hold you down and rape your butt while you <<s>>cream and cry."
 <br><br>
-$subSlave.slaveName keeps _his2 eyes clamped shut and _his2 hand<<if $subSlave.missingArms == 0>>s<</if>> down at _his2 side<<if $subSlave.missingArms == 0>>s<</if>>, balled into <<if $subSlave.missingArms != 0>>a <</if>>fist<<if $subSlave.missingArms == 0>>s<</if>>, but _his2 self-control finally cracks and _he2 lets out a great gasping sob before bursting into tears.
+$subSlave.slaveName keeps _his2 eyes clamped shut and _his2 hand<<if hasBothArms($subSlave)>>s<</if>> down at _his2 side<<if hasBothArms($subSlave)>>s<</if>>, balled into <<if !hasBothArms($subSlave)>>a <</if>>fist<<if hasBothArms($subSlave)>>s<</if>>, but _his2 self-control finally cracks and _he2 lets out a great gasping sob before bursting into tears.
 
 <<case "shower force">>
 
 <<set $subSlave.counter.anal++, $analTotal++>>
 <<set _belly = bellyAdjective($subSlave)>>
-As you pass the showers, you hear what sounds like a muffled altercation over the noise of the showers running. You look in to see $subSlave.slaveName's $subSlave.skin body facing you, pressed hard up against the glass wall of one of the showers. _His2 <<if $subSlave.face > 95>>gorgeous<<elseif $subSlave.face > 40>>beautiful<<elseif $subSlave.face > 10>>pretty<<elseif $subSlave.face >= -10>>attractive<<else>>homely<</if>> face<<if $subSlave.belly >= 5000>> and <<if $subSlave.bellyPreg >= 5000>>pregnant<<else>>_belly<</if>> belly are<<else>> is<</if>> smashed against the glass, <<if $subSlave.belly >= 5000>>_his2 face <</if>>contorted in pain and fear. The apparent mystery is solved when you notice that there are <<if hasBothLegs($activeSlave) && $subSlave.missingLegs == 0>>four<<elseif hasBothLegs($activeSlave) || $subSlave.missingLegs == 0>>three<<else>>two<</if>> legs visible: there's a <<if hasBothLegs($activeSlave)>>pair of <</if>><<if ($activeSlave.muscles > 95)>>ripped<<elseif ($activeSlave.muscles > 30)>>muscular<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> $activeSlave.skin cal<<if hasBothLegs($activeSlave)>>ves<<else>>f<</if>> behind $subSlave.slaveName's. <<EventNameLink>>'s face appears at $subSlave.slaveName's ear, and though you can't hear exactly what $he says, it's something along the lines of "Take it, you whiny little bitch." $He's clearly got <<if canPenetrate($activeSlave)>>$his cock<<else>>a couple of fingers<</if>> up $subSlave.slaveName's asshole.
+As you pass the showers, you hear what sounds like a muffled altercation over the noise of the showers running. You look in to see $subSlave.slaveName's $subSlave.skin body facing you, pressed hard up against the glass wall of one of the showers. _His2 <<if $subSlave.face > 95>>gorgeous<<elseif $subSlave.face > 40>>beautiful<<elseif $subSlave.face > 10>>pretty<<elseif $subSlave.face >= -10>>attractive<<else>>homely<</if>> face<<if $subSlave.belly >= 5000>> and <<if $subSlave.bellyPreg >= 5000>>pregnant<<else>>_belly<</if>> belly are<<else>> is<</if>> smashed against the glass, <<if $subSlave.belly >= 5000>>_his2 face <</if>>contorted in pain and fear. The apparent mystery is solved when you notice that there are <<if hasBothLegs($activeSlave) && hasBothLegs($subSlave)>>four<<elseif hasBothLegs($activeSlave) || hasBothLegs($subSlave)>>three<<else>>two<</if>> legs visible: there's a <<if hasBothLegs($activeSlave)>>pair of <</if>><<if ($activeSlave.muscles > 95)>>ripped<<elseif ($activeSlave.muscles > 30)>>muscular<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> $activeSlave.skin cal<<if hasBothLegs($activeSlave)>>ves<<else>>f<</if>> behind $subSlave.slaveName's. <<EventNameLink>>'s face appears at $subSlave.slaveName's ear, and though you can't hear exactly what $he says, it's something along the lines of "Take it, you whiny little bitch." $He's clearly got <<if canPenetrate($activeSlave)>>$his cock<<else>>a couple of fingers<</if>> up $subSlave.slaveName's asshole.
 <br><br>
 Both slaves notice you at the same time. $subSlave.slaveName's <<if canSee($subSlave)>><<= App.Desc.eyeColor($subSlave)>> eyes widen<<else>>face lights up<</if>>, but _his2 momentary look of hope is snuffed out when _he2 remembers who you are. $activeSlave.slaveName, on the other hand, looks a little doubtful. The rules allow $him to fuck your other slaves, but $he isn't quite sure what the right thing to do is, since $he isn't the most dominant force in the showers any more.
 
@@ -997,7 +997,7 @@ $activeSlave.slaveName shifts a little, and giggles.
 	deeper, <<s>>weetie." $subSlave.slaveName's hands aren't visible, but $he obviously has <<if $activeSlave.anus > 2>>a fist up $his _mother's huge asspussy<<elseif $activeSlave.anus > 1>>a couple of fingers up $his _mother's butt<<else>>a finger up $his _mother's tight ass<</if>>
 	<<set $activeSlave.counter.anal++, $subSlave.counter.oral++, $analTotal++, $oralTotal++>>
 <<else>>
-	ju<<s>>t like that, <<s>>weetie." $subSlave.slaveName's <<if $subSlave.missingArms == 0>>hands aren't<<else>>hand isn't<</if>> visible, but it's obvious $he's using <<if $subSlave.missingArms == 0>>them<<else>>it<</if>> to manually pleasure $his _mother
+	ju<<s>>t like that, <<s>>weetie." $subSlave.slaveName's <<if hasBothArms($subSlave)>>hands aren't<<else>>hand isn't<</if>> visible, but it's obvious $he's using <<if hasBothArms($subSlave)>>them<<else>>it<</if>> to manually pleasure $his _mother
 	<<set $activeSlave.counter.oral++, $subSlave.counter.oral++, $oralTotal+2>>
 <</if>>
 while _he2 nurses. $activeSlave.slaveName notices you first, of course, and <<if canSee($activeSlave)>>looks up at<<else>>turns to<</if>> you complacently. "Hi, <<Master>>," $he <<say>>s quietly, $his <<if $activeSlave.voice > 2>>bimbo's<<elseif $activeSlave.voice > 1>>pretty<<else>>deep<</if>> voice thick with arousal.
@@ -2023,7 +2023,7 @@ $he adds impishly. <<if canHear($subSlave)>>Hearing this<<else>>Realizing your p
 	<<run Enunciate($activeSlave)>>
 	<<switch $subSlave.fetish>>
 	<<case "submissive">>
-		is a shameless submissive and loves to be fucked. $activeSlave.slaveName must know $he's being had, at least a little. "$subSlave.slaveName," $he purrs, "I'll fuck you <<if $subSlave.missingLegs != 3>>until your toe<<s>> curl<<else>><<s>>en<<s>>ele<<ss>><</if>>."
+		is a shameless submissive and loves to be fucked. $activeSlave.slaveName must know $he's being had, at least a little. "$subSlave.slaveName," $he purrs, "I'll fuck you <<if hasAnyLegs($subSlave)>>until your toe<<s>> curl<<else>><<s>>en<<s>>ele<<ss>><</if>>."
 	<<case "cumslut">>
 		loves the taste of cum. "I promi<<s>>e to pull out and let you drink my cum, <<s>>traight from my cock," $he purrs.
 		<<set $activeSlave.counter.penetrative++, $penetrativeTotal++>>
diff --git a/src/uncategorized/clinicReport.tw b/src/uncategorized/clinicReport.tw
index 19f572a6565..9055430f0c4 100644
--- a/src/uncategorized/clinicReport.tw
+++ b/src/uncategorized/clinicReport.tw
@@ -163,7 +163,7 @@
 		<</if>>
 		<<if $slaves[$i].pregKnown == 1 && $slaves[$i].preg < $slaves[$i].pregData.normalBirth && $slaves[$i].pregControl == "speed up">>
 			<<setLocalPronouns $slaves[$i] 2>>
-			<br>''@@.pink;$slaves[$i].slaveName@@'' spends most of _his2 time on bedrest being filled with rapid gestation agents and concentrated slave food. All _he2 can do is <<if $slaves[$i].missingArms != 3 && canSee($slaves[$i])>>watch and feel _his2 belly pushing further and further out with life<<elseif canSee($slaves[$i])>>watch _his2 belly bulging further and further out with life<<elseif $slaves[$i].missingArms != 3>>feel _his2 belly pushing further and further out with life beneath _his2 fingers<<else>>feel the every growing pressure inside _his2 abdomen<</if>>. Careful attention, along with numerous drug injections, are used to make sure _his2 body is able to safely adjust to _his2 pregnancy's rapid growth.
+			<br>''@@.pink;$slaves[$i].slaveName@@'' spends most of _his2 time on bedrest being filled with rapid gestation agents and concentrated slave food. All _he2 can do is <<if hasAnyArms($slaves[$i]) && canSee($slaves[$i])>>watch and feel _his2 belly pushing further and further out with life<<elseif canSee($slaves[$i])>>watch _his2 belly bulging further and further out with life<<elseif hasAnyArms($slaves[$i])>>feel _his2 belly pushing further and further out with life beneath _his2 fingers<<else>>feel the every growing pressure inside _his2 abdomen<</if>>. Careful attention, along with numerous drug injections, are used to make sure _his2 body is able to safely adjust to _his2 pregnancy's rapid growth.
 			<<set $slaves[$i].health -= 10>>
 			<<if ($slaves[$i].devotion > 50)>>
 				<<set $slaves[$i].devotion += 2, $slaves[$i].trust += 1>>
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index 0e380fcf12b..3e988532de2 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -2099,13 +2099,13 @@ $He is
 		<<collarDescription>>
 		<<if ($activeSlave.relationship > 4)>>
 			<<if (hasAnyArms($activeSlave))>>
-				$He has a simple gold band on the little finger of $his <<if $activeSlave.missingArms == 1>>right<<else>>left<</if>> hand.
+				$He has a simple gold band on the little finger of $his <<if !hasLeftArm($activeSlave)>>right<<else>>left<</if>> hand.
 			<<else>>
 				$He has a simple gold band on a length of chain around $his neck.
 			<</if>>
 		<<elseif ($activeSlave.relationship == -3)>>
 			<<if (hasAnyArms($activeSlave))>>
-				$He has a simple steel band on the little finger of $his <<if $activeSlave.missingArms == 1>>right<<else>>left<</if>> hand.
+				$He has a simple steel band on the little finger of $his <<if !hasLeftArm($activeSlave)>>right<<else>>left<</if>> hand.
 			<<else>>
 				$He has a simple steel band on a length of cord around $his neck.
 			<</if>>
diff --git a/src/uncategorized/masterSuiteReport.tw b/src/uncategorized/masterSuiteReport.tw
index 6d26a48e9d1..ae985d3b9b1 100644
--- a/src/uncategorized/masterSuiteReport.tw
+++ b/src/uncategorized/masterSuiteReport.tw
@@ -367,7 +367,7 @@
 		<<if $verboseDescriptions == 1>>
 			<br>&nbsp;&nbsp;&nbsp;&nbsp;$He <<include "SA please you">>
 			<br>&nbsp;&nbsp;&nbsp;
-			<<if $servantMilkers == 1 && $slaves[$i].lactation > 0 && $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken" && $slaves[$i].missingArms != 3 && $slaves[$i].intelligence+$slaves[$i].intelligenceImplant >= -90>>
+			<<if $servantMilkers == 1 && $slaves[$i].lactation > 0 && $slaves[$i].fuckdoll == 0 && $slaves[$i].fetish != "mindbroken" && hasAnyArms($slaves[$i]) && $slaves[$i].intelligence+$slaves[$i].intelligenceImplant >= -90>>
 				When $his breasts begin to feel full and you aren't around, $he avails $himself to the penthouse milkers and
 				<<set $servantMilkersMultiplier = 0.25>><<silently>><<include "SA get milked">><</silently>><<set $servantMilkersMultiplier = 1>>
 				gives $milk liters of milk over the week, which is sold for @@.yellowgreen;<<print cashFormat($milkSale)>>.@@
diff --git a/src/uncategorized/pBombing.tw b/src/uncategorized/pBombing.tw
index e66bcc84b73..d52004a4f25 100644
--- a/src/uncategorized/pBombing.tw
+++ b/src/uncategorized/pBombing.tw
@@ -53,9 +53,9 @@ The implant is small, and went off too far ahead to do anything more than stun.
 		<<elseif ($Bodyguard.muscles+$Bodyguard.height-100)/25 > 4>>
 			bringing $his battle rifle up. $He swivels from target to target, placing a single round in each, using the weapon's devastating stopping power to good effect.
 		<<elseif ($Bodyguard.muscles+$Bodyguard.height-100)/25 > 3>>
-			bringing $his submachine gun up. $He cradles the compact weapon in <<if $Bodyguard.missingArms == 0>>both hands<<else>>$his hand<</if>> and swivels from target to target, placing a long burst of fire in each, using the weapon's large ammunition capacity to good effect.
+			bringing $his submachine gun up. $He cradles the compact weapon in <<if hasBothArms($Bodyguard)>>both hands<<else>>$his hand<</if>> and swivels from target to target, placing a long burst of fire in each, using the weapon's large ammunition capacity to good effect.
 		<<else>>
-			drawing $his machine pistol. $He cradles the diminutive weapon in <<if $Bodyguard.missingArms == 0>>both hands<<else>>$his hand<</if>> and swivels from target to target, placing a disciplined burst of fire in each at its center of mass.
+			drawing $his machine pistol. $He cradles the diminutive weapon in <<if hasBothArms($Bodyguard)>>both hands<<else>>$his hand<</if>> and swivels from target to target, placing a disciplined burst of fire in each at its center of mass.
 		<</if>>
 		None of them gets within five <<if $showInches == 2>>yards<<else>>meters<</if>>. $Bodyguard.slaveName dispassionately places a round in the head of each body, reloads, and takes up a position from which $he can watch for further threats. There are none, and due to $his sterling conduct there is @@.green;an increase in confidence in the security of $arcologies[0].name@@ and @@.green;public applause for your skill in training $him.@@ There is some @@.red;minor damage@@ to repair, but no lasting harm.
 		<<run cashX(-1000, "event", $Bodyguard)>>
diff --git a/src/uncategorized/randomIndividualEvent.tw b/src/uncategorized/randomIndividualEvent.tw
index 10447a2c918..dbc5a9e0951 100644
--- a/src/uncategorized/randomIndividualEvent.tw
+++ b/src/uncategorized/randomIndividualEvent.tw
@@ -79,7 +79,7 @@
 						<</if>>
 						<<if $slaves[$i].anus > 0 && canDoAnal($slaves[$i])>>
 							<<if $slaves[$i].devotion > 50>>
-								<<if $slaves[$i].missingLegs == 0>>
+								<<if hasBothLegs($slaves[$i])>>
 									<<set $RERepressedAnalVirginSubIDs.push($slaves[$i].ID)>>
 								<</if>>
 							<</if>>
diff --git a/src/uncategorized/reBusyArcade.tw b/src/uncategorized/reBusyArcade.tw
index ebabb072c01..cba806b26e6 100644
--- a/src/uncategorized/reBusyArcade.tw
+++ b/src/uncategorized/reBusyArcade.tw
@@ -3,7 +3,7 @@
 <<set _rebaIDs = []>>
 <<for _reba = 0; _reba < $ArcadeiIDs.length; _reba++>>
 	<<set _rebaIndex = $slaveIndices[$ArcadeiIDs[_reba]]>>
-	<<if $slaves[_rebaIndex].missingArms != 3 && $slaves[_rebaIndex].fetish != "mindbroken" && $slaves[_rebaIndex].devotion < 45>>
+	<<if hasAnyArms($slaves[_rebaIndex]) && $slaves[_rebaIndex].fetish != "mindbroken" && $slaves[_rebaIndex].devotion < 45>>
 		<<set _rebaIDs.push($slaves[_rebaIndex].ID)>>
 	<</if>>
 <</for>>
diff --git a/src/uncategorized/reBusyMasterSuite.tw b/src/uncategorized/reBusyMasterSuite.tw
index 307a48d5b5d..cf2e102f468 100644
--- a/src/uncategorized/reBusyMasterSuite.tw
+++ b/src/uncategorized/reBusyMasterSuite.tw
@@ -69,7 +69,7 @@ $He had to turn to greet you as you entered, since $he was facing away from the
 		who is bending to rub _his3 enormous hard nipples across _msSlaves[$i].slaveName's _msSlaves[$i].skin back.
 	<<elseif _msSlaves[$j].lips > 40>>
 		who is bending forward to nibble along _msSlaves[$i].slaveName's _msSlaves[$i].skin neck.
-	<<elseif _msSlaves[$j].missingArms != 3>>
+	<<elseif hasAnyArms(_msSlaves[$j])>>
 		who is reaching around to grope _msSlaves[$i].slaveName's _msSlaves[$i].skin chest.
 	<<else>>
 		who is propped up against _msSlaves[$i].slaveName's _msSlaves[$i].skin butt.
diff --git a/src/uncategorized/reDevotedMotherDaughter.tw b/src/uncategorized/reDevotedMotherDaughter.tw
index 6adf1796004..7b53e1ba409 100644
--- a/src/uncategorized/reDevotedMotherDaughter.tw
+++ b/src/uncategorized/reDevotedMotherDaughter.tw
@@ -58,7 +58,7 @@ $slaves[$i].slaveName and $his _daughter2 $slaves[$j].slaveName are both good sl
 <</link>>
 <br><<link "Get them started and then keep them at it in your office">>
 	<<replace "#result">>
-	You give them orders of devastating simplicity: they are to repair to the couch in your office and are to take turns getting each other off until such time as you tell them otherwise. They're momentarily stunned, but $slaves[$i].slaveName takes the lead and draws $his _daughter2 over to the couch<<if $slaves[$i].missingArms != 3 && $slaves[$j].missingArms != 3>> by the hand<</if>>. They're both accomplished sex slaves and obey orders well, so they are quite successful in the little game, if a bit mechanical. For the rest of the day, interviewees come and go and are treated to the sight of the two of them having subdued sex on the couch. Showing off one's slaves for business interlocutors is a common Free Cities practice, but more than one perceptive person figures out what the resemblance between the two slaves and the age gap between them really means. Of course, all those who figure it out are impressed by your sheer decadence.
+	You give them orders of devastating simplicity: they are to repair to the couch in your office and are to take turns getting each other off until such time as you tell them otherwise. They're momentarily stunned, but $slaves[$i].slaveName takes the lead and draws $his _daughter2 over to the couch<<if hasAnyArms($slaves[$i]) && hasAnyArms($slaves[$j])>> by the hand<</if>>. They're both accomplished sex slaves and obey orders well, so they are quite successful in the little game, if a bit mechanical. For the rest of the day, interviewees come and go and are treated to the sight of the two of them having subdued sex on the couch. Showing off one's slaves for business interlocutors is a common Free Cities practice, but more than one perceptive person figures out what the resemblance between the two slaves and the age gap between them really means. Of course, all those who figure it out are impressed by your sheer decadence.
 	@@.green;Your reputation has increased considerably.@@
 	<<run repX(2500, "event", $slaves[$i])>>
 	<<run repX(2500, "event", $slaves[$j])>>
diff --git a/src/uncategorized/reSlaveMarriage.tw b/src/uncategorized/reSlaveMarriage.tw
index 8ae309fc9be..0dd0a133a97 100644
--- a/src/uncategorized/reSlaveMarriage.tw
+++ b/src/uncategorized/reSlaveMarriage.tw
@@ -30,7 +30,7 @@
 </span>
 
 <<print "[[$groomSlave.slaveName|Long Slave Description][$nextLink = passage(), $eventDescription = 1,$activeSlave = $groomSlave]]">> and <<print "[[$brideSlave.slaveName|Long Slave Description][$nextLink = passage(), $eventDescription = 1,$activeSlave = $brideSlave]]">> come into your office
-<<if ($groomSlave.missingArms != 3) && ($brideSlave.missingArms != 3)>>holding hands<<else>>doing their best to stay close to one another despite their physical limitations<</if>>. $brideSlave.slaveName looks at $groomSlave.slaveName expectantly, but _he2's terribly nervous and makes several false starts before beginning. Finally $groomSlave.slaveName musters $his courage and <<if !canTalk($groomSlave)>>asks you with simple gestures to grant the two of them a slave marriage.<<else>>asks with $his voice cracking, "<<Master>>, would you plea<<s>>e grant u<<s>> a <<s>>lave marriage?"<</if>>
+<<if (hasAnyArms($groomSlave)) && (hasAnyArms($brideSlave))>>holding hands<<else>>doing their best to stay close to one another despite their physical limitations<</if>>. $brideSlave.slaveName looks at $groomSlave.slaveName expectantly, but _he2's terribly nervous and makes several false starts before beginning. Finally $groomSlave.slaveName musters $his courage and <<if !canTalk($groomSlave)>>asks you with simple gestures to grant the two of them a slave marriage.<<else>>asks with $his voice cracking, "<<Master>>, would you plea<<s>>e grant u<<s>> a <<s>>lave marriage?"<</if>>
 
 <br><br>
 
@@ -127,7 +127,7 @@
 		prominently bulges from the gap between _his2 lingerie.
 	<</if>>
 
-	<br><br>The procedure is simple. The two of them prostrate themselves on the ground and beg your indulgence. You state that you grant it, and hand each of them a simple gold band to be worn on the little finger in advertisement of the inferiority of their union. In turn, each of them gives the other their ring, and they kiss. You pronounce them slave spouses, and offer them the couch for their honeymoon; they @@.mediumaquamarine;thank you profusely@@ through their building tears. It's always touching to see <<if $groomSlave.bellyPreg >= 5000 && $brideSlave.bellyPreg >= 5000>>two pregnant slaves <<if $brideSlave.missingArms != 3 && $groomSlave.missingArms != 3>>fingering<<else>>fucking<</if>> each other<<else>>a 69<</if>> in which both participants are @@.hotpink;softly crying with happiness.@@
+	<br><br>The procedure is simple. The two of them prostrate themselves on the ground and beg your indulgence. You state that you grant it, and hand each of them a simple gold band to be worn on the little finger in advertisement of the inferiority of their union. In turn, each of them gives the other their ring, and they kiss. You pronounce them slave spouses, and offer them the couch for their honeymoon; they @@.mediumaquamarine;thank you profusely@@ through their building tears. It's always touching to see <<if $groomSlave.bellyPreg >= 5000 && $brideSlave.bellyPreg >= 5000>>two pregnant slaves <<if hasAnyArms($brideSlave) && hasAnyArms($groomSlave)>>fingering<<else>>fucking<</if>> each other<<else>>a 69<</if>> in which both participants are @@.hotpink;softly crying with happiness.@@
 	<<if $groomSlave.pregSource == $brideSlave.ID && $brideSlave.pregSource == $groomSlave.ID>>
 		When $groomSlave.slaveName and $brideSlave.slaveName tire, they rest, shoulder to shoulder, with a hand upon each other's bulging belly. Gently, they caress their growing pregnancies, knowing that they carry the other's love child.
 	<<elseif $brideSlave.pregSource == $groomSlave.ID>>
diff --git a/src/uncategorized/reStaffedMorning.tw b/src/uncategorized/reStaffedMorning.tw
index 8972a0d8011..aae51249bba 100644
--- a/src/uncategorized/reStaffedMorning.tw
+++ b/src/uncategorized/reStaffedMorning.tw
@@ -50,7 +50,7 @@ The bathroom door is open and the shower is running. Though the steam is beginni
 	<<if $PC.dick == 1>>
 		You begin to thrust gently into _bedSlaves[0].slaveName's mouth. <<if $girl == _girl2>>The $girl<<else>>Your bedmate<</if>>s moan and giggle into you at the signal that you're not going to get up right this instant, and <<if (_bedSlaves[0].dick > 0) && (_bedSlaves[1].dick > 0)>>start jerking each other off harder, making lewd noises and humping each other's hands<<else>>really start giving each other proper handjobs, jerking around lewdly as their arousal builds<</if>>.<<if $PC.vagina == 1>> They always spare at least one hand for your cunt, despite your thrusting.<</if>> When you climax, they do, too, one after the other. They quickly switch mouth positions and suck you back to full mast so you can enjoy your shower.
 	<<else>>
-		You reach down and run a possessive hand across each slave's scalp, neck, and back, eliciting shivers. Then, you gently hook them under the armpits and pull them up a bit, without breaking their lip locks with your nipples, or forcing them to stop playing with your cunt. Each slave ends curled up, mostly face-down, with their mouths still sucking on your <<if $PC.boobs == 1>>boobs<<else>>chest<</if>><<if (_bedSlaves[0].missingArms != 3) && (_bedSlaves[1].missingArms != 3)>> and their free hands trapped between their legs<</if>>. They get the message and begin to look after themselves, too; their resultant moaning against your nipples grows when you reach down and start teasing their butts. The three of you climax more or less together, and you bounce up with undiminished arousal to enjoy your shower.
+		You reach down and run a possessive hand across each slave's scalp, neck, and back, eliciting shivers. Then, you gently hook them under the armpits and pull them up a bit, without breaking their lip locks with your nipples, or forcing them to stop playing with your cunt. Each slave ends curled up, mostly face-down, with their mouths still sucking on your <<if $PC.boobs == 1>>boobs<<else>>chest<</if>><<if (hasAnyArms(_bedSlaves[0])) && (hasAnyArms(_bedSlaves[1]))>> and their free hands trapped between their legs<</if>>. They get the message and begin to look after themselves, too; their resultant moaning against your nipples grows when you reach down and start teasing their butts. The three of you climax more or less together, and you bounce up with undiminished arousal to enjoy your shower.
 	<</if>>
 	<br><br>
 	By now, the shower is an impenetrable fog of steam. The wet, soapy bodies inside are easy to find, though. _bedSlaves[2].slaveName happens to be closest, so you
@@ -88,7 +88,7 @@ The bathroom door is open and the shower is running. Though the steam is beginni
 	<</if>>
 	You're in a hurry, but it'll be a sad day when you aren't able to assrape a slave into total submission in five minutes. You drop _bedSlaves[3].slaveName on the shower floor and let _bedSlaves[2].slaveName towel you off.
 	<<if $PC.dick == 0>>
-		_bedSlaves[3].slaveName <<if _bedSlaves[3].missingLegs == 0>>gets to _his4 feet<<else>>hoists _himself4 upright<</if>> and helpfully holds up a strap-on questioningly; you shake your head and point to another, larger one. _He4 helps you into it, and you ram it up _his4 loosened ass experimentally, nodding in satisfaction when the big phallus forces a pained gasp out of _him4.
+		_bedSlaves[3].slaveName <<if hasBothLegs(_bedSlaves[3])>>gets to _his4 feet<<else>>hoists _himself4 upright<</if>> and helpfully holds up a strap-on questioningly; you shake your head and point to another, larger one. _He4 helps you into it, and you ram it up _his4 loosened ass experimentally, nodding in satisfaction when the big phallus forces a pained gasp out of _him4.
 	<</if>>
 	<br><br>
 	Back in the bedroom, your clothes have been laid out, ready for _bedSlaves[0].slaveName and _bedSlaves[1].slaveName to dress you.
diff --git a/src/uncategorized/reStandardPunishment.tw b/src/uncategorized/reStandardPunishment.tw
index b04fc74d5f7..eed2666be37 100644
--- a/src/uncategorized/reStandardPunishment.tw
+++ b/src/uncategorized/reStandardPunishment.tw
@@ -129,7 +129,7 @@
 	<<else>>
 		breaks down and makes no move to obey, but does not resist as you take $his wrist<<if hasBothArms($activeSlave)>>s<</if>> in your hands and lift them into the restraints.
 	<</if>>
-	The shackles can be moved up or down, and you move them up, raising the shivering, frightened $desc <<if $activeSlave.missingLegs != 3>>to the tips of $his toes<<else>>far off the ground<</if>>. $He struggles a little to find $his balance, and is distracted when the first stroke lands on $his $activeSlave.skin buttocks. Your leather instrument is exquisitely designed and balanced to produce pain without breaking the skin or leaving a permanent mark. You tell $him to count, and $he <<if canTalk($activeSlave)>>gasps "one" through $his agony<<elseif $activeSlave.voice != 0>>grunts once, doing $his best<<else>>sticks up one finger despite $his restrained hand<<if hasBothArms($activeSlave)>>s<</if>><</if>>. You flog $his bottom until it's pleasantly warm to the touch, and then let $him down. $He's @@.mediumaquamarine;relieved@@ at your moderation.
+	The shackles can be moved up or down, and you move them up, raising the shivering, frightened $desc <<if hasAnyLegs($activeSlave)>>to the tips of $his toes<<else>>far off the ground<</if>>. $He struggles a little to find $his balance, and is distracted when the first stroke lands on $his $activeSlave.skin buttocks. Your leather instrument is exquisitely designed and balanced to produce pain without breaking the skin or leaving a permanent mark. You tell $him to count, and $he <<if canTalk($activeSlave)>>gasps "one" through $his agony<<elseif $activeSlave.voice != 0>>grunts once, doing $his best<<else>>sticks up one finger despite $his restrained hand<<if hasBothArms($activeSlave)>>s<</if>><</if>>. You flog $his bottom until it's pleasantly warm to the touch, and then let $him down. $He's @@.mediumaquamarine;relieved@@ at your moderation.
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index 2cee71457f1..4e725ce9603 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -1693,31 +1693,31 @@ Work on $him structurally:
 	<<if !hasBothArms($activeSlave) || !hasBothLegs($activeSlave)>>
 		<<if hasBothArms($activeSlave)>>
 			$He has healthy arms,
-		<<elseif $activeSlave.missingArms == 1>>
-			$His left arm has been amputated,
-		<<elseif $activeSlave.missingArms == 2>>
-			$His right arm has been amputated,
 		<<elseif !hasAnyArms($activeSlave)>>
 			Both of $his arms have been amputated,
+		<<elseif !hasLeftArm($activeSlave)>>
+			$His left arm has been amputated,
+		<<elseif !hasRightArm($activeSlave)>>
+			$His right arm has been amputated,
 		<</if>>
 		<<if hasBothLegs($activeSlave)>>
 			but $his legs are healthy.
 		<<else>>
 			<<if hasBothArms($activeSlave)>>
-				<<if $activeSlave.missingLegs == 1>>
+				<<if !hasAnyLegs($activeSlave)>>
+					but both of $his legs have been amputated.
+				<<elseif !hasLeftLeg($activeSlave)>>
 					but $his left leg has been amputated.
-				<<elseif $activeSlave.missingLegs == 2>>
+				<<elseif !hasRightLeg($activeSlave)>>
 					but $his right leg has been amputated.
-				<<elseif !hasAnyLegs($activeSlave)>>
-					but both of $his legs have been amputated.
 				<</if>>
 			<<else>>
-				<<if $activeSlave.missingLegs == 1>>
+				<<if !hasAnyLegs($activeSlave)>>
+					as have both of $his legs.
+				<<elseif !hasLeftLeg($activeSlave)>>
 					as has $his left leg.
-				<<elseif $activeSlave.missingLegs == 2>>
+				<<elseif !hasRightLeg($activeSlave)>>
 					as has $his right leg.
-				<<elseif !hasAnyLegs($activeSlave)>>
-					as have both of $his legs.
 				<</if>>
 			<</if>>
 		<</if>>
@@ -1760,7 +1760,7 @@ Work on $him structurally:
 					| [[Remove both arms|Surgery Degradation][surgeryAmp($activeSlave, "left arm"), surgeryAmp($activeSlave, "right arm"), $activeSlave.releaseRules = "restrictive", $activeSlave.amp = 1, $surgeryType = "amp1"]] //This will greatly restrict $him//
 				<</if>>
 			<</if>>
-		<<elseif $activeSlave.missingArms == 1>>
+		<<elseif hasRightArm($activeSlave)>>
 			<<if hasAnyLegs($activeSlave)>>
 				[[Remove arm|Surgery Degradation][surgeryAmp($activeSlave, "right arm"), $surgeryType = "ampA2"]]
 			<<else>>
@@ -1770,7 +1770,7 @@ Work on $him structurally:
 					[[Remove arm|Surgery Degradation][surgeryAmp($activeSlave, "right arm"), $activeSlave.releaseRules = "restrictive", $activeSlave.amp = 1, $surgeryType = "amp1"]] //This will greatly restrict $him//
 				<</if>>
 			<</if>>
-		<<elseif $activeSlave.missingArms == 2>>
+		<<elseif hasLeftArm($activeSlave)>>
 			<<if hasAnyLegs($activeSlave)>>
 				[[Remove arm|Surgery Degradation][surgeryAmp($activeSlave, "left arm"), $surgeryType = "ampA2"]]
 			<<else>>
@@ -1796,7 +1796,7 @@ Work on $him structurally:
 					| [[Remove both legs|Surgery Degradation][surgeryAmp($activeSlave, "left leg"), surgeryAmp($activeSlave, "right leg"), $activeSlave.releaseRules = "restrictive", $activeSlave.amp = 1, $surgeryType = "amp1"]] //This will greatly restrict $him//
 				<</if>>
 			<</if>>
-		<<elseif $activeSlave.missingLegs == 1>>
+		<<elseif hasRightLeg($activeSlave)>>
 			<<if hasAnyArms($activeSlave)>>
 				[[Remove leg|Surgery Degradation][surgeryAmp($activeSlave, "right leg"), $surgeryType = "ampL2"]]
 			<<else>>
@@ -1806,7 +1806,7 @@ Work on $him structurally:
 					[[Remove leg|Surgery Degradation][surgeryAmp($activeSlave, "right leg"), $activeSlave.amp = 1, $activeSlave.releaseRules = "restrictive", $surgeryType = "amp1"]] //This will greatly restrict $him//
 				<</if>>
 			<</if>>
-		<<elseif $activeSlave.missingLegs == 2>>
+		<<elseif hasLeftLeg($activeSlave)>>
 			<<if hasAnyArms($activeSlave)>>
 				[[Remove leg|Surgery Degradation][surgeryAmp($activeSlave, "left leg"), $surgeryType = "ampL2"]]
 			<<else>>
diff --git a/src/uncategorized/saDiet.tw b/src/uncategorized/saDiet.tw
index 7502657b18f..c07842234f5 100644
--- a/src/uncategorized/saDiet.tw
+++ b/src/uncategorized/saDiet.tw
@@ -1166,7 +1166,7 @@
 		<<set $slaves[$i].diet = "healthy">>
 	<</if>>
 <<case "muscle building">> /* Muscle Gain */
-	Fuckdoll suits can force their inhabitants to <<if $slaves[$i].missingArms != 3>>lift weights<<else>>exercise<</if>> until they drop.
+	Fuckdoll suits can force their inhabitants to <<if hasAnyArms($slaves[$i])>>lift weights<<else>>exercise<</if>> until they drop.
 	<<if $slaves[$i].muscles > 90>>
 		$He has plateaued at a state of @@.lime;perfect musculature.@@
 		<<set $slaves[$i].muscles = 100>>
diff --git a/src/uncategorized/saLiveWithHG.tw b/src/uncategorized/saLiveWithHG.tw
index e1dcdf01197..dc802c58081 100644
--- a/src/uncategorized/saLiveWithHG.tw
+++ b/src/uncategorized/saLiveWithHG.tw
@@ -799,7 +799,7 @@
 	<<else>>
 		and keeps $him on $his diet.
 	<</if>>
-<<elseif (($slaves[$i].muscles <= 95 && ($arcologies[0].FSPhysicalIdealist > 0 || (($HeadGirl.fetish == "submissive" || $HeadGirl.fetish == "masochist") && $HeadGirl.fetishKnown == 1))) || $slaves[$i].muscles <= 5) && $slaves[$i].missingArms != 3>>
+<<elseif (($slaves[$i].muscles <= 95 && ($arcologies[0].FSPhysicalIdealist > 0 || (($HeadGirl.fetish == "submissive" || $HeadGirl.fetish == "masochist") && $HeadGirl.fetishKnown == 1))) || $slaves[$i].muscles <= 5) && hasAnyArms($slaves[$i])>>
 	$HeadGirl.slaveName thinks $slaves[$i].slaveName
 	<<if $arcologies[0].FSPhysicalIdealist > 0>>
 		could use bigger muscles to support your societal goals
@@ -956,12 +956,12 @@
 			<</if>>
 		<<elseif $HeadGirl.fetish == "masochist">>
 			<<if ($slaves[$i].health > 40) && ($slaves[$i].heightImplant == 0) && ($slaves[$i].height < 185) && ($slaves[$i].amp != 1)>>
-				$HeadGirl.slaveName has a subconscious need to be hurt by the biggest, strongest $girl possible, and directs the autosurgery to extend $slaves[$i].slaveName's <<if ($slaves[$i].missingArms != 3)>>arm<<if ($slaves[$i].missingLegs != 3)>> and <</if>><</if>><<if ($slaves[$i].missingLegs != 3)>>leg<</if>> bones to make $him a little @@.lime;taller.@@
+				$HeadGirl.slaveName has a subconscious need to be hurt by the biggest, strongest $girl possible, and directs the autosurgery to extend $slaves[$i].slaveName's <<if (hasAnyArms($slaves[$i]))>>arm<<if ($slaves[$i].missingLegs != 3)>> and <</if>><</if>><<if ($slaves[$i].missingLegs != 3)>>leg<</if>> bones to make $him a little @@.lime;taller.@@
 				<<set $slaves[$i].health -= 20, $slaves[$i].heightImplant = 1, $slaves[$i].height += 1>>
 			<</if>>
 		<<elseif $HeadGirl.fetish == "submissive">>
 			<<if ($slaves[$i].health > 40) && ($slaves[$i].heightImplant == 0) && ($slaves[$i].height < 185) && ($slaves[$i].amp != 1)>>
-				$HeadGirl.slaveName wants to be topped by the biggest, strongest $girl possible, and directs the autosurgery to extend $slaves[$i].slaveName's <<if ($slaves[$i].missingArms != 3)>>arm<<if ($slaves[$i].missingLegs != 3)>> and <</if>><</if>><<if ($slaves[$i].missingLegs != 3)>>leg<</if>> bones to make $him a little @@.lime;taller.@@
+				$HeadGirl.slaveName wants to be topped by the biggest, strongest $girl possible, and directs the autosurgery to extend $slaves[$i].slaveName's <<if (hasAnyArms($slaves[$i]))>>arm<<if ($slaves[$i].missingLegs != 3)>> and <</if>><</if>><<if ($slaves[$i].missingLegs != 3)>>leg<</if>> bones to make $him a little @@.lime;taller.@@
 				<<set $slaves[$i].health -= 20, $slaves[$i].heightImplant = 1, $slaves[$i].height += 1>>
 			<</if>>
 		<</if>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 0f43c8b0164..b9be2047a9f 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -7864,7 +7864,7 @@
 			<</if>>
 		<</if>>
 		<<if $slaves[$i].preg gt 30>>
-			<<if $slaves[$i].missingArms != 3>>
+			<<if hasAnyArms($slaves[$i])>>
 				<<if $slaves[$i].devotion lt -4 and ($slaves[$i].fetish isnot "mindbroken")>>
 					When $he isn't laboring or performing $his duties $he can be seen pressing down on $his grotesque belly desperately trying to coax the device out of $his body. $He is @@.gold;mortified@@ by $his body and @@.mediumorchid;loathes you@@ for doing this to $him.
 					<<set $slaves[$i].devotion -= 4.0>>
diff --git a/src/uncategorized/saServeYourOtherSlaves.tw b/src/uncategorized/saServeYourOtherSlaves.tw
index 589b2354302..4ef779f7e69 100644
--- a/src/uncategorized/saServeYourOtherSlaves.tw
+++ b/src/uncategorized/saServeYourOtherSlaves.tw
@@ -401,11 +401,11 @@ is serving ''$slaves[_dom].slaveName'' this week.
 	<<= SimpleSexAct.Slaves($slaves[$i], $slaves[_dom], _fuckCount)>>
 <<elseif ($slaves[_dom].missingArms != 3) && ($slaves[_dom].attrXX > 85) && ($slaves[$i].dick == 0) && ($slaves[$i].vagina > -1)>>
 	<<if ($slaves[$i].devotion < -20)>>
-		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself groped, fingered, and toyed with. $He spends the week trying to avoid $slaves[_dom].slaveName's playful _domRace <<if ($slaves[_dom].missingArms == 0)>>hands<<else>>fingers<</if>>, but they rove across $his _subRace body anyway. @@.hotpink;$slaves[_dom].slaveName enjoys having a nice little toy right at hand,@@ even if $he does have to be forced.
+		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself groped, fingered, and toyed with. $He spends the week trying to avoid $slaves[_dom].slaveName's playful _domRace <<if (hasBothArms($slaves[_dom]))>>hands<<else>>fingers<</if>>, but they rove across $his _subRace body anyway. @@.hotpink;$slaves[_dom].slaveName enjoys having a nice little toy right at hand,@@ even if $he does have to be forced.
 	<<elseif ($slaves[$i].devotion <= 50)>>
-		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself groped, fingered, and toyed with. $He spends the week accepting the attention of $slaves[_dom].slaveName's playful _domRace <<if ($slaves[_dom].missingArms == 0)>>hands<<else>>fingers<</if>>. They rove across $his _subRace body, eliciting embarrassed arousal. @@.hotpink;$slaves[_dom].slaveName enjoys having a nice little toy right at hand,@@ even if $he is a little hesitant.
+		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself groped, fingered, and toyed with. $He spends the week accepting the attention of $slaves[_dom].slaveName's playful _domRace <<if (hasBothArms($slaves[_dom]))>>hands<<else>>fingers<</if>>. They rove across $his _subRace body, eliciting embarrassed arousal. @@.hotpink;$slaves[_dom].slaveName enjoys having a nice little toy right at hand,@@ even if $he is a little hesitant.
 	<<else>>
-		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself with a frank and open lover for the week. $He spends the week accepting the attention of $slaves[_dom].slaveName's adoring _domRace <<if ($slaves[_dom].missingArms == 0)>>hands<<else>>fingers<</if>>. They rove across $his _subRace body, knowing just where to touch and where to press. @@.hotpink;$slaves[_dom].slaveName enjoys having a compliant <<= $girl>>friend,@@ and they spend as much time together as they can.
+		Since $slaves[_dom].slaveName loves girls, $slaves[$i].slaveName finds $himself with a frank and open lover for the week. $He spends the week accepting the attention of $slaves[_dom].slaveName's adoring _domRace <<if (hasBothArms($slaves[_dom]))>>hands<<else>>fingers<</if>>. They rove across $his _subRace body, knowing just where to touch and where to press. @@.hotpink;$slaves[_dom].slaveName enjoys having a compliant <<= $girl>>friend,@@ and they spend as much time together as they can.
 	<</if>>
 	<<if canPenetrate($slaves[_dom])>>
 		<<set _fuckCount = random(9,12)>>
diff --git a/src/uncategorized/saTakeClasses.tw b/src/uncategorized/saTakeClasses.tw
index b324bf0cc78..e64e0c328c5 100644
--- a/src/uncategorized/saTakeClasses.tw
+++ b/src/uncategorized/saTakeClasses.tw
@@ -136,7 +136,7 @@
 		and $he is perfectly studious this week.
 	<</if>>
 
-	<<if $slaves[$i].lactation == 1 && $slaves[$i].assignment == "learn in the schoolroom" && $Schoolteacher != 0 && $Schoolteacher.missingArms != 3>>
+	<<if $slaves[$i].lactation == 1 && $slaves[$i].assignment == "learn in the schoolroom" && $Schoolteacher != 0 && hasAnyArms($Schoolteacher)>>
 		With $his natural lactation, $he often finds $himself milked before the class by $Schoolteacher.slaveName both to serve as a lesson and to keep $him from becoming a milky mess.
 		<<set $slaves[$i].lactationDuration = 2, $slaves[$i].boobs -= $slaves[$i].boobsMilk, $slaves[$i].boobsMilk = 0>>
 	<</if>>
diff --git a/src/uncategorized/seExpiration.tw b/src/uncategorized/seExpiration.tw
index e1cd3d2e57f..0a95137d1e7 100644
--- a/src/uncategorized/seExpiration.tw
+++ b/src/uncategorized/seExpiration.tw
@@ -113,7 +113,7 @@ $activeSlave.slaveName's indentured servitude is ending this week, meaning that
 	<<set $slaveCost = Math.clamp($slaveCost, $minimumSlaveCost, 100000)>>
 
 	$His feelings on this are quite mixed, since $he has come to feel that $he has a place under you.
-	<<if $activeSlave.missingLegs == 3>>
+	<<if !hasAnyLegs($activeSlave)>>
 		Propped up
 	<<else>>
 		Standing before you
@@ -150,7 +150,7 @@ $activeSlave.slaveName's indentured servitude is ending this week, meaning that
 <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust > 20)>>
 
 $He approaches the moment with calculation, since $he has found more of a place in slavery than $he probably expected when $he became an indentured servant.
-<<if $activeSlave.missingLegs == 3>>
+<<if !hasAnyLegs($activeSlave)>>
 	Propped up
 <<else>>
 	Standing before you
diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw
index 36e81939f0e..83b3fac947b 100644
--- a/src/uncategorized/seLethalPit.tw
+++ b/src/uncategorized/seLethalPit.tw
@@ -542,7 +542,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 			<<run repX(100, "pit", _winner)>>
 		<</if>>
 	<<elseif (_loser.boobs > 1200)>>
-		_winner.slaveName takes an extremely simple shortcut to victory. The instant the fight starts, $he slices _loser.slaveName right across _his2 huge tits, which are so large they cannot properly be defended. _loser.slaveName reflexively drops _his2 sword to clasp _his2 hand<<if _loser.missingArms == 0>>s<</if>> over _his2 ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. _winner.slaveName's follow-up is neither artful nor particularly well planned, but it is effective. $He hits the distracted _girl2's neck from the side, almost but not quite separating _his2 head from _his2 body.
+		_winner.slaveName takes an extremely simple shortcut to victory. The instant the fight starts, $he slices _loser.slaveName right across _his2 huge tits, which are so large they cannot properly be defended. _loser.slaveName reflexively drops _his2 sword to clasp _his2 hand<<if hasBothArms(_loser)>>s<</if>> over _his2 ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. _winner.slaveName's follow-up is neither artful nor particularly well planned, but it is effective. $He hits the distracted _girl2's neck from the side, almost but not quite separating _his2 head from _his2 body.
 		<<if $pitAudience == "paid">>
 			The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive.
 			<<run cashX(slaveCost, "pit", _winner)>>
@@ -575,19 +575,19 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 	You let the winner _winner.slaveName, shaking as $he comes off the adrenaline, drugs, and the fear, exit the pit.
 
 	<<if _winner.fetish == "mindbroken">>
-		$He was already so broken before today that $he will not be seriously affected by having killed with $his own hand<<if _winner.missingArms == 0>>s<</if>>.
+		$He was already so broken before today that $he will not be seriously affected by having killed with $his own hand<<if hasBothArms(_winner)>>s<</if>>.
 	<<elseif _winner.devotion > 95>>
 		$He is so worshipful of you that $he does not see killing _loser.slaveName as special in $his own internal listing of things that $he has willingly done and would willingly do again on your behalf.
 	<<elseif _winner.devotion > 80>>
-		$He will never forget having killed _loser.slaveName with $his own hand<<if _winner.missingArms == 0>>s<</if>>. The only way $he will be able to live with $himself is to @@.hotpink;subsume $his will to yours,@@ telling $himself that the killing was to serve and obey you.
+		$He will never forget having killed _loser.slaveName with $his own hand<<if hasBothArms(_winner)>>s<</if>>. The only way $he will be able to live with $himself is to @@.hotpink;subsume $his will to yours,@@ telling $himself that the killing was to serve and obey you.
 		<<set _winner.devotion += 10>>
 	<<elseif (_winner.fetishKnown == 1) && (_winner.fetishStrength > 60) && (_winner.fetish == "sadist")>>
 		$He has sunk even deeper into cruelty, callousness, and a total disregard of the value of other slaves' lives. Going forward, $he's even @@.hotpink;less likely to question@@ even the most abominable commands.
 		<<set _winner.devotion += 4>>
 	<<elseif _winner.devotion > 50>>
-		$He will never forget having killed _loser.slaveName with $his own hand<<if _winner.missingArms == 0>>s<</if>>. The only way $he will be able to live with $himself is to tell $himself that the killing was done on your orders.
+		$He will never forget having killed _loser.slaveName with $his own hand<<if hasBothArms(_winner)>>s<</if>>. The only way $he will be able to live with $himself is to tell $himself that the killing was done on your orders.
 	<<else>>
-		$He will never forget having killed _loser.slaveName with $his own hand<<if _winner.missingArms == 0>>s<</if>>. The only way $he will be able to live with $himself is to @@.mediumorchid;blame you,@@ telling $himself that the killing was the only choice you gave $him if $he wanted to live.
+		$He will never forget having killed _loser.slaveName with $his own hand<<if hasBothArms(_winner)>>s<</if>>. The only way $he will be able to live with $himself is to @@.mediumorchid;blame you,@@ telling $himself that the killing was the only choice you gave $him if $he wanted to live.
 		<<set _winner.devotion -= 10>>
 	<</if>>
 
@@ -737,7 +737,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 				<<run repX(100, "pit", _loser)>>
 			<</if>>
 		<<elseif (_loser.boobs > 1200)>>
-			_loser.slaveName's tits are too big to possibly defend, so $he can't help but watch in horror as the _animal.species lunges at $him, <<switch _animal.type>><<case "canine" "feline">>fangs and claws out<<case "hooved">>headfirst<</switch>>. _loser.slaveName's reflexively drops _his2 sword to clasp _his2 hand<<if _loser.missingArms == 0>>s<</if>> over _his2 ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. The _animal.species follows up with a <<switch _animal.type>><<case "canine" "feline">>fierce bite to one of $his legs, causing $him to collapse. A second later, the animal has finished $him off.<<case "hooved">>swift kick to the head, causing $him to drop like a rock. Another blow to the head finishes $him off.<</switch>>
+			_loser.slaveName's tits are too big to possibly defend, so $he can't help but watch in horror as the _animal.species lunges at $him, <<switch _animal.type>><<case "canine" "feline">>fangs and claws out<<case "hooved">>headfirst<</switch>>. _loser.slaveName's reflexively drops _his2 sword to clasp _his2 hand<<if hasBothArms(_loser)>>s<</if>> over _his2 ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. The _animal.species follows up with a <<switch _animal.type>><<case "canine" "feline">>fierce bite to one of $his legs, causing $him to collapse. A second later, the animal has finished $him off.<<case "hooved">>swift kick to the head, causing $him to drop like a rock. Another blow to the head finishes $him off.<</switch>>
 			<<if $pitAudience == "paid">>
 				The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive.
 				<<run cashX(2000, "pit", _loser)>>
@@ -778,19 +778,19 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 		You let the winner _winner.slaveName, shaking as $he comes off the adrenaline, drugs, and the fear, exit the pit.
 
 		<<if _winner.fetish == "mindbroken">>
-			$He was already so broken before today that $he will not be seriously affected by having killed with $his own hand<<if _winner.missingArms == 0>>s<</if>>.
+			$He was already so broken before today that $he will not be seriously affected by having killed with $his own hand<<if hasBothArms(_winner)>>s<</if>>.
 		<<elseif _winner.devotion > 95>>
 			$He is so worshipful of you that $he does not see killing an animal as special in $his own internal listing of things that $he has willingly done and would willingly do again on your behalf.
 		<<elseif _winner.devotion > 80>>
-			$He will never forget having killed an animal with $his own hand<<if _winner.missingArms == 0>>s<</if>>. The only way $he will be able to live with $himself is to @@.hotpink;subsume $his will to yours,@@ telling $himself that the killing was to serve and obey you.
+			$He will never forget having killed an animal with $his own hand<<if hasBothArms(_winner)>>s<</if>>. The only way $he will be able to live with $himself is to @@.hotpink;subsume $his will to yours,@@ telling $himself that the killing was to serve and obey you.
 			<<set _winner.devotion += 10>>
 		<<elseif (_winner.fetishKnown == 1) && (_winner.fetishStrength > 60) && (_winner.fetish == "sadist")>>
 			$He has sunk even deeper into cruelty, callousness, and a total disregard of the value of other lives. Going forward, $he's even @@.hotpink;less likely to question@@ even the most abominable commands.
 			<<set _winner.devotion += 4>>
 		<<elseif _winner.devotion > 50>>
-			$He will never forget having killed an animal with $his own hand<<if _winner.missingArms == 0>>s<</if>>. The only way $he will be able to live with $himself is to tell $himself that the killing was done on your orders.
+			$He will never forget having killed an animal with $his own hand<<if hasBothArms(_winner)>>s<</if>>. The only way $he will be able to live with $himself is to tell $himself that the killing was done on your orders.
 		<<else>>
-			$He will never forget having killed an animal with $his own hand<<if _winner.missingArms == 0>>s<</if>>. The only way $he will be able to live with $himself is to @@.mediumorchid;blame you,@@ telling $himself that the killing was the only choice you gave $his if $he wanted to live.
+			$He will never forget having killed an animal with $his own hand<<if hasBothArms(_winner)>>s<</if>>. The only way $he will be able to live with $himself is to @@.mediumorchid;blame you,@@ telling $himself that the killing was the only choice you gave $his if $he wanted to live.
 			<<set _winner.devotion -= 10>>
 		<</if>>
 
diff --git a/src/uncategorized/seNonlethalPit.tw b/src/uncategorized/seNonlethalPit.tw
index ab020cd493c..abac8855d36 100644
--- a/src/uncategorized/seNonlethalPit.tw
+++ b/src/uncategorized/seNonlethalPit.tw
@@ -436,7 +436,7 @@
 		<</if>>
 	<<elseif (_winnerDeadliness > _loserDeadliness+3)>>
 		<<if (_winner.skill.combat > 0)>>
-			_winner.slaveName wants to win, and $he opens the fight with a furious attack. _loser.slaveName manages to get _his2 forearm<<if _loser.missingArms == 0>>s<</if>> up, blocking a few blows, but by doing so leaves _his2 abdomen open and obscures _his2 vision enough that _he2 is unprepared for the following kidney strike, which brings _him2 gasping to one knee. _winner.slaveName lets _him2 rise just a little before delivering a calculated hard right that sends _loser.slaveName to the mat.
+			_winner.slaveName wants to win, and $he opens the fight with a furious attack. _loser.slaveName manages to get _his2 forearm<<if hasBothArms(_loser)>>s<</if>> up, blocking a few blows, but by doing so leaves _his2 abdomen open and obscures _his2 vision enough that _he2 is unprepared for the following kidney strike, which brings _him2 gasping to one knee. _winner.slaveName lets _him2 rise just a little before delivering a calculated hard right that sends _loser.slaveName to the mat.
 			<<if $pitAudience == "paid">>
 				The audience is not very impressed by this execution, and your @@.yellowgreen;cut of the betting@@ is unimpressive.
 				<<run cashX(500, "pit", _winner)>>
@@ -535,7 +535,7 @@
 			<<run repX(25, "pit", _winner)>>
 		<</if>>
 	<<elseif (_loser.dick > 0)>>
-		_winner.slaveName wants to win badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he furiously goes for _loser.slaveName's face. _loser.slaveName defends _himself2 with _his2 arm<<if _loser.missingArms == 0>>s<</if>>, at which point _winner.slaveName delivers a mighty kick to the dick. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName winds up to kick _him2 again but hesitates, wondering whether it's even necessary.
+		_winner.slaveName wants to win badly enough that $he takes an extremely brutal shortcut to victory. The instant the fight starts, $he furiously goes for _loser.slaveName's face. _loser.slaveName defends _himself2 with _his2 arm<<if hasBothArms(_loser)>>s<</if>>, at which point _winner.slaveName delivers a mighty kick to the dick. _loser.slaveName goes down like a marionette with cut strings, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes. _winner.slaveName winds up to kick _him2 again but hesitates, wondering whether it's even necessary.
 		<<if $pitAudience == "paid">>
 			The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive.
 			<<run cashX(500, "pit", _winner)>>
@@ -544,7 +544,7 @@
 			<<run repX(25, "pit", _winner)>>
 		<</if>>
 	<<elseif canDoVaginal(_loser)>>
-		_winner.slaveName wants to win badly enough that $he takes an extremely unpleasant shortcut to victory. The instant the fight starts, $he furiously goes for _loser.slaveName's eyes, hands forming claws. _loser.slaveName defends _himself2 with _his2 arms, at which point _winner.slaveName delivers a mighty cunt punt. _loser.slaveName goes straight down, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes while _his2 hand<<if _loser.missingArms == 0>>s<</if>> desperately shield _his2 outraged pussy. _winner.slaveName follows _him2 down and puts the unresisting _girl2's head in a simple lock.
+		_winner.slaveName wants to win badly enough that $he takes an extremely unpleasant shortcut to victory. The instant the fight starts, $he furiously goes for _loser.slaveName's eyes, hands forming claws. _loser.slaveName defends _himself2 with _his2 arms, at which point _winner.slaveName delivers a mighty cunt punt. _loser.slaveName goes straight down, _his2 mouth soundlessly opening and closing and tears leaking from _his2 closed eyes while _his2 hand<<if hasBothArms(_loser)>>s<</if>> desperately shield _his2 outraged pussy. _winner.slaveName follows _him2 down and puts the unresisting _girl2's head in a simple lock.
 		<<if $pitAudience == "paid">>
 			The audience is not very impressed by this easy win, and your @@.yellowgreen;cut of the betting@@ is unimpressive.
 			<<run cashX(500, "pit", _winner)>>
@@ -585,7 +585,7 @@
 			$He respects _loser.slaveName's virgin holes, and hauls the loser to _his2 knees for a facefuck.
 			<<set _loser.counter.oral += 1, $oralTotal += 1>>
 		<<elseif (_loser.vagina == 0) && canDoVaginal(_loser) && canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>,
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>,
 			<<if _winner.fetish == "pregnancy">>
 				and, after <<if canSee(_winner)>>eyeing<<else>>feeling up<</if>> _his2 virgin vagina with desire, penetrates the loser's anus.
 			<<else>>
@@ -597,7 +597,7 @@
 				<<= knockMeUp(_loser, 50, 1, _winner.ID)>>
 			<</if>>
 		<<elseif (_loser.anus == 0) && canDoVaginal(_loser) && canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>,
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>,
 			<<if _winner.fetish == "buttslut" || (canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1 && _winner.fetish == "pregnancy")>>
 				and, after <<if canSee(_winner)>>eyeing<<else>>feeling up<</if>> _his2 virgin anus with desire, penetrates the loser's cunt.
 			<<else>>
@@ -609,14 +609,14 @@
 				<<= knockMeUp(_loser, 50, 0, _winner.ID)>>
 			<</if>>
 		<<elseif canDoVaginal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's cunt.
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's cunt.
 			<<set _loser.counter.vaginal += 1, $vaginalTotal += 1>>
 			<<if canImpreg(_loser, _winner) && canPenetrate(_winner)>>
 				<<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up<</if>>.
 				<<= knockMeUp(_loser, 50, 0, _winner.ID)>>
 			<</if>>
 		<<elseif canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's anus.
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's anus.
 			<<set _loser.counter.anal += 1, $analTotal += 1>>
 			<<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>>
 				<<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up<</if>>.
@@ -628,7 +628,7 @@
 		<</if>>
 	<<elseif $pitVirginities == 2>> /* anal */
 		<<if (_loser.vagina == 0) && canDoVaginal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>,
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>,
 			<<if _winner.fetish == "pregnancy">>
 				and gleefully takes advantage of your rules to @@.lime;take _his2 virginity.@@
 			<<else>>
@@ -641,7 +641,7 @@
 				<<= knockMeUp(_loser, 50, 0, _winner.ID)>>
 			<</if>>
 		<<elseif (_loser.anus == 0) && canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>,
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>,
 			<<if _winner.fetish == "buttslut" || (canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1 && _winner.fetish == "pregnancy")>>
 				<<if canDoVaginal(_loser)>>
 					and hungrily eyes _his2 anal virginity before penetrating the loser's cunt.
@@ -668,14 +668,14 @@
 				<</if>>
 			<</if>>
 		<<elseif canDoVaginal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's cunt.
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's cunt.
 			<<set _loser.counter.vaginal += 1, $vaginalTotal += 1>>
 			<<if canImpreg(_loser, _winner) && canPenetrate(_winner)>>
 				<<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up<</if>>.
 				<<= knockMeUp(_loser, 50, 0, _winner.ID)>>
 			<</if>>
 		<<elseif canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's anus.
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's anus.
 			<<set _loser.counter.anal += 1, $analTotal += 1>>
 			<<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>>
 				<<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up<</if>>.
@@ -687,7 +687,7 @@
 		<</if>>
 	<<elseif $pitVirginities == 1>> /* vagina */
 		<<if (_loser.vagina == 0) && canDoVaginal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>,
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>,
 			<<if _winner.fetish == "pregnancy">>
 				<<if canDoAnal(_loser)>>
 					and hungrily eyes _his2 pristine vagina before penetrating the loser's ass.
@@ -714,7 +714,7 @@
 				<</if>>
 			<</if>>
 		<<elseif (_loser.anus == 0) && canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>,
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>,
 			<<if _winner.fetish == "buttslut" || (canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1 && _winner.fetish == "pregnancy")>>
 				and gleefully takes advantage of your rules to @@.lime;take _his2 anal virginity.@@
 			<<else>>
@@ -727,14 +727,14 @@
 				<<= knockMeUp(_loser, 50, 1, _winner.ID)>>
 			<</if>>
 		<<elseif canDoVaginal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's cunt.
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's cunt.
 			<<set _loser.counter.vaginal += 1, $vaginalTotal += 1>>
 			<<if canImpreg(_loser, _winner) && canPenetrate(_winner)>>
 				<<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up<</if>>.
 				<<= knockMeUp(_loser, 50, 0, _winner.ID)>>
 			<</if>>
 		<<elseif canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's anus.
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's anus.
 			<<set _loser.counter.anal += 1, $analTotal += 1>>
 			<<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>>
 				<<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up<</if>>.
@@ -746,7 +746,7 @@
 		<</if>>
 	<<else>> /* free game */
 		<<if (_loser.vagina == 0) && canDoVaginal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>,
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>,
 			<<if _winner.fetish == "pregnancy">>
 				and gleefully takes advantage of your rules to @@.lime;take _his2 virginity.@@
 			<<else>>
@@ -759,7 +759,7 @@
 				<<= knockMeUp(_loser, 50, 0, _winner.ID)>>
 			<</if>>
 		<<elseif (_loser.anus == 0) && canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>,
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>,
 			<<if _winner.fetish == "buttslut" || (canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1 && _winner.fetish == "pregnancy")>>
 				and gleefully takes advantage of your rules to @@.lime;take _his2 anal virginity.@@
 			<<else>>
@@ -772,14 +772,14 @@
 				<<= knockMeUp(_loser, 50, 1, _winner.ID)>>
 			<</if>>
 		<<elseif canDoVaginal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's cunt.
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's cunt.
 			<<set _loser.counter.vaginal += 1, $vaginalTotal += 1>>
 			<<if canImpreg(_loser, _winner) && canPenetrate(_winner)>>
 				<<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile pussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up<</if>>.
 				<<= knockMeUp(_loser, 50, 0, _winner.ID)>>
 			<</if>>
 		<<elseif canDoAnal(_loser)>>
-			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if _loser.missingLegs == 0>>legs apart<<elseif _loser.missingLegs == 3>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's anus.
+			$He pushes _loser.slaveName's back down onto the mat, forces _his2 <<if hasBothLegs(_loser)>>legs apart<<elseif !hasAnyLegs(_loser)>>hips steady<<else>>leg aside<</if>>, and penetrates the loser's anus.
 			<<set _loser.counter.anal += 1, $analTotal += 1>>
 			<<if canImpreg(_loser, _winner) && canPenetrate(_winner) && _loser.mpreg == 1>>
 				<<if !canTalk(_loser)>>_loser.slaveName tries to gesture a protest before _winner.slaveName fills _his2 fertile asspussy with cum, but _winner.slaveName grabs _his2 hands and pins them to keep _him2 from complaining<<else>>_loser.slaveName starts to scream a protest to stop _winner.slaveName raping _him2 pregnant, but _winner.slaveName grinds _his2 face into the mat to shut _him2 up<</if>>.
diff --git a/src/uncategorized/seRetirement.tw b/src/uncategorized/seRetirement.tw
index 9fee47e1b17..e45b6988a13 100644
--- a/src/uncategorized/seRetirement.tw
+++ b/src/uncategorized/seRetirement.tw
@@ -324,7 +324,7 @@ and, a disturbingly short time later, there is a new Fuckdoll, a humanoid figure
 <<if $activeSlave.amp == 1>>
 	Its limbless form is not obviously human. It's a sex toy, with several interesting holes and nothing else worth noticing.
 <<else>>
-	It <<if $activeSlave.missingLegs == 3>>sits upright and<<else>>stands<</if>> immobile, the hydraulic system hidden within the suit stiffened to make voluntary movement impossible.
+	It <<if !hasAnyLegs($activeSlave)>>sits upright and<<else>>stands<</if>> immobile, the hydraulic system hidden within the suit stiffened to make voluntary movement impossible.
 <</if>>
 <<if $activeSlave.boobs > 2000>>
 	The suit has a pair of gaps for its monstrous breasts, bare expanses of $activeSlave.skin skin.
diff --git a/src/uncategorized/seWeddingDouble.tw b/src/uncategorized/seWeddingDouble.tw
index 2322f381932..74bc5d1f89d 100644
--- a/src/uncategorized/seWeddingDouble.tw
+++ b/src/uncategorized/seWeddingDouble.tw
@@ -583,7 +583,7 @@
 	The ceremony to bind <<= SlaveFullName(_slave1)>> and <<= SlaveFullName(_slave2)>> to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> and their wombs to you as your private breeding ground is a polite affair which you host in the lower floor of your penthouse. <<if $arcologies[0].FSRestart != "unset" && (_slave1.breedingMark == 0 || $propOutcome == 0)>>Barely anyone is there, mostly lower-class citizens, several accompanied by their slaves. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. There is a distinct air of unrest in the room, as if the absent Elites' distaste of your actions came in their place.<<else>>All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.<</if>>
 	<br><br>
 	/* good luck reading this next line */
-	_slave1.slaveName and _slave2.slaveName appear after everyone has had a chance to socialize, <<if (!hasAnyLegs(_slave1))>>_slave1.slaveName<</if>><<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>> and <<if (!hasAnyLegs(_slave2))>>_slave2.slaveName<</if>> being carried by <<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>other slaves<<elseif (hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>_slave1.slaveName<<elseif (!hasAnyLegs(_slave1)) && (hasAnyLegs(_slave2))>>_slave2.slaveName<</if>> since <</if>><<if (!hasAnyLegs(_slave1)) && (hasAnyLegs(_slave2))>>$he's a <<if (_slave1.amp == 1)>>quadruple<<elseif !hasBothArms(_slave1)>>triple<<else>>double<</if>> amputee and $he cannot walk, <<elseif (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>they're both <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>quadruple<<elseif (!hasBothArms(_slave1)) && (!hasBothArms(_slave2))>>triple<<elseif (_slave1.missingArms == 0) && (_slave2.missingArms == 0)>>double<</if>> amputees and cannot walk, <<elseif (hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>_he2's a <<if (_slave2.amp == 1)>>quadruple<<elseif !hasBothArms(_slave2)>>triple<<else>>double<</if>> amputee and _he2 cannot walk, <</if>>wearing beautiful bridal lingerie in
+	_slave1.slaveName and _slave2.slaveName appear after everyone has had a chance to socialize, <<if (!hasAnyLegs(_slave1))>>_slave1.slaveName<</if>><<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>> and <<if (!hasAnyLegs(_slave2))>>_slave2.slaveName<</if>> being carried by <<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>other slaves<<elseif (hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>_slave1.slaveName<<elseif (!hasAnyLegs(_slave1)) && (hasAnyLegs(_slave2))>>_slave2.slaveName<</if>> since <</if>><<if (!hasAnyLegs(_slave1)) && (hasAnyLegs(_slave2))>>$he's a <<if (_slave1.amp == 1)>>quadruple<<elseif !hasBothArms(_slave1)>>triple<<else>>double<</if>> amputee and $he cannot walk, <<elseif (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>they're both <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>quadruple<<elseif (!hasBothArms(_slave1)) && (!hasBothArms(_slave2))>>triple<<elseif (hasBothArms(_slave1)) && (hasBothArms(_slave2))>>double<</if>> amputees and cannot walk, <<elseif (hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>_he2's a <<if (_slave2.amp == 1)>>quadruple<<elseif !hasBothArms(_slave2)>>triple<<else>>double<</if>> amputee and _he2 cannot walk, <</if>>wearing beautiful bridal lingerie in
 
 	<<if (_slave1.vagina == 0 && _slave2.vagina == 0) || (_slave1.pregKnown == 1 && _slave2.pregKnown == 1) || ((_slave1.vagina < 0 && _slave1.anus == 0) && (_slave2.vagina < 0 && _slave2.anus == 0)) || ((_slave1.vagina < 0 && _slave1.boobs > 500) && (_slave2.vagina < 0 && _slave2.boobs > 500)) || (_slave1.vagina < 0 && _slave2.vagina < 0) || (_slave1.dick > 0 && _slave2.dick > 0) || ((_slave1.vagina > 0 || _slave1.anus > 0) && (_slave2.vagina > 0 || _slave2.anus > 0))>>
 		<<if (_slave1.vagina == 0)>>
@@ -878,15 +878,15 @@
 			the slave carrying _slave1.slaveName's legless torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch,
 		<<else>>
 			<<if _slave1.fetish == "mindbroken">>
-				you push _slave1.slaveName onto $his knee<<if _slave1.missingLegs == 0>>s<</if>> so $his head
+				you push _slave1.slaveName onto $his knee<<if hasBothLegs(_slave1)>>s<</if>> so $his head
 			<<elseif _slave1.devotion+_slave1.trust >= 175>>
-				_slave1.slaveName happily gets down on $his knee<<if _slave1.missingLegs == 0>>s<</if>> so $his head
+				_slave1.slaveName happily gets down on $his knee<<if hasBothLegs(_slave1)>>s<</if>> so $his head
 			<<elseif _slave1.devotion < -20 && _slave1.trust > 20>>
-				$he slowly lowers $himself onto $his knee<<if _slave1.missingLegs == 0>>s<</if>> so $his head
+				$he slowly lowers $himself onto $his knee<<if hasBothLegs(_slave1)>>s<</if>> so $his head
 			<<elseif _slave1.devotion < -20>>
-				$he quickly lowers $himself onto $his knee<<if _slave1.missingLegs == 0>>s<</if>> so $his tear-streaked face
+				$he quickly lowers $himself onto $his knee<<if hasBothLegs(_slave1)>>s<</if>> so $his tear-streaked face
 			<<else>>
-				$he gets down on $his knee<<if _slave1.missingLegs == 0>>s<</if>> so $his head
+				$he gets down on $his knee<<if hasBothLegs(_slave1)>>s<</if>> so $his head
 			<</if>>
 			is level with your crotch,
 		<</if>>
@@ -895,15 +895,15 @@
 			the slave carrying _slave2.slaveName's legless torso sets _him2 down on the floor in front of you and props _him2 up so _his2 head is level with your crotch.
 		<<else>>
 			<<if _slave2.fetish == "mindbroken">>
-				you push _him2 onto _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> so _his2 head
+				you push _him2 onto _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> so _his2 head
 			<<elseif _slave2.devotion+_slave2.trust >= 175>>
-				_he2 happily gets down on _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> so _his2 head
+				_he2 happily gets down on _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> so _his2 head
 			<<elseif _slave2.devotion < -20 && _slave2.trust > 20>>
-				_he2 slowly lowers _himself2 onto _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> so _his2 head
+				_he2 slowly lowers _himself2 onto _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> so _his2 head
 			<<elseif _slave2.devotion < -20>>
-				_he2 quickly lowers _himself2 onto _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> so _his2 tear-streaked face
+				_he2 quickly lowers _himself2 onto _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> so _his2 tear-streaked face
 			<<else>>
-				_he2 gets down on _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> so _his2 head
+				_he2 gets down on _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> so _his2 head
 			<</if>>
 			is level with your crotch.
 		<</if>>
@@ -911,20 +911,20 @@
 
 	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring
 
-	<<if (_slave1.missingArms == 3 && _slave2.missingArms == 3)>>
+	<<if (!hasAnyArms(_slave1) && !hasAnyArms(_slave2))>>
 		on a cord around both of their necks, since they lack fingers to wear it on.
 	<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>
 		on both of their middle fingers.
 	<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>
 		on both of their trembling middle fingers.
 	<<else>>
-		<<if _slave1.missingArms == 3>>
+		<<if !hasAnyArms(_slave1)>>
 			on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on
 		<<else>>
 			on _slave1.slaveName's <<if _slave1.devotion < -20 && _slave1.trust <= 20>>trembling <</if>>finger
 		<</if>>
 		and another ring
-		<<if _slave2.missingArms == 3>>
+		<<if !hasAnyArms(_slave2)>>
 			on a cord around _slave2.slaveName's neck, since $he lacks fingers to wear it on.
 		<<else>>
 			on _slave2.slaveName's <<if _slave2.devotion < -20 && _slave2.trust <= 20>>trembling <</if>>finger.
@@ -1002,39 +1002,39 @@
 
 	<<if ((_slave1.fetish == "mindbroken") && (_slave2.fetish == "mindbroken")) || ((_slave1.devotion+_slave1.trust >= 175) && (_slave2.devotion+_slave2.trust >= 175)) || ((_slave1.devotion < -20 && _slave1.trust > 20) && (_slave2.devotion < -20 && _slave2.trust > 20)) || ((_slave1.devotion < -20) && (_slave2.devotion < -20)) || ((_slave1.devotion >= -20 && _slave2.devotion >= -20))>>
 		<<if _slave1.fetish == "mindbroken">>
-			Both slaves are mindbroken, so you gather them up and hold them in front of you, pulling their panties off as you do. They follows your motions like ragdolls. You maneuver your dick inside _slave1.slaveName first while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his knee<<if _slave1.missingLegs == 0>>s<</if>> up to give your guests a good view as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You pull _him2 in, pushing your dick into _his2 <<if (_slave2.mpreg == 1 && _slave2.anus == 0) || (_slave2.vagina == 0)>>virgin <<elseif (_slave2.mpreg == 1 && _slave2.anus == 1) || (_slave2.vagina == 1)>>tight <</if>><<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. $He doesn't respond, and _his2 reaction when you fill _his2 <<if _slave2.mpreg>>ass<<else>>pussy<</if>> with more jizz to @@.green;more applause from your guests@@ is entirely mechanical. You'll fuck them repeatedly over the next few days, ensuring impregnation.
+			Both slaves are mindbroken, so you gather them up and hold them in front of you, pulling their panties off as you do. They follows your motions like ragdolls. You maneuver your dick inside _slave1.slaveName first while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his knee<<if hasBothLegs(_slave1)>>s<</if>> up to give your guests a good view as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You pull _him2 in, pushing your dick into _his2 <<if (_slave2.mpreg == 1 && _slave2.anus == 0) || (_slave2.vagina == 0)>>virgin <<elseif (_slave2.mpreg == 1 && _slave2.anus == 1) || (_slave2.vagina == 1)>>tight <</if>><<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. $He doesn't respond, and _his2 reaction when you fill _his2 <<if _slave2.mpreg>>ass<<else>>pussy<</if>> with more jizz to @@.green;more applause from your guests@@ is entirely mechanical. You'll fuck them repeatedly over the next few days, ensuring impregnation.
 		<<elseif _slave1.devotion+_slave1.trust >= 175>>
-			Then, you <<if !hasAnyLegs(_slave1)>>gather _slave1.slaveName up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _slave1.slaveName's hand and pull $him to their feet while $he shimmies out of $his panties. $He cocks their hips for you and you slide your cock inside $him before taking $his knee<<if _slave1.missingLegs == 0>>s<</if>> and drawing <<if _slave1.missingLegs == 0>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You <<if (!hasAnyLegs(_slave1) && !hasAnyLegs(_slave2))>>also <</if>><<if !hasAnyLegs(_slave2)>>pick _him2 up and <<else>>pull _him2 to _his2 feet and <</if>>pull _his2 g-string off in one swift motion, then maneuver your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You fuck _him2, hard, then fill _him2 to the brim @@.green;while your audience gives another round of applause.@@ This cemented the idea that @@.mediumaquamarine;$he's also special to you@@ in _his2 mind. You'll fuck them repeatedly over the next few days, ensuring impregnation.
+			Then, you <<if !hasAnyLegs(_slave1)>>gather _slave1.slaveName up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _slave1.slaveName's hand and pull $him to their feet while $he shimmies out of $his panties. $He cocks their hips for you and you slide your cock inside $him before taking $his knee<<if hasBothLegs(_slave1)>>s<</if>> and drawing <<if hasBothLegs(_slave1)>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You <<if (!hasAnyLegs(_slave1) && !hasAnyLegs(_slave2))>>also <</if>><<if !hasAnyLegs(_slave2)>>pick _him2 up and <<else>>pull _him2 to _his2 feet and <</if>>pull _his2 g-string off in one swift motion, then maneuver your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You fuck _him2, hard, then fill _him2 to the brim @@.green;while your audience gives another round of applause.@@ This cemented the idea that @@.mediumaquamarine;$he's also special to you@@ in _his2 mind. You'll fuck them repeatedly over the next few days, ensuring impregnation.
 		<<elseif _slave1.devotion < -20 && _slave1.trust > 20>>
-			The slaves are unwilling, so you gather _slave1.slaveName up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave1)>> Then you pull $his knee<<if _slave1.missingLegs == 0>>s<</if>> up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. You've already moved on to _slave2.slaveName, however. _He2 had watched timidly as you had fucked _slave1.slaveName, but when you grab _him2, _he2 begins to cry softly. You ignore this, of course, and instead focus on pushing your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You can tell _he2 is trying _his2 hardest not to sob outright, and sure enough, a small sob escapes _his2 lips when you fill _him2 to the brim to the @@.green;applause of your guests.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation, despite their efforts to defy you.
+			The slaves are unwilling, so you gather _slave1.slaveName up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave1)>> Then you pull $his knee<<if hasBothLegs(_slave1)>>s<</if>> up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. You've already moved on to _slave2.slaveName, however. _He2 had watched timidly as you had fucked _slave1.slaveName, but when you grab _him2, _he2 begins to cry softly. You ignore this, of course, and instead focus on pushing your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You can tell _he2 is trying _his2 hardest not to sob outright, and sure enough, a small sob escapes _his2 lips when you fill _him2 to the brim to the @@.green;applause of your guests.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation, despite their efforts to defy you.
 		<<elseif _slave1.devotion < -20>>
-			The <<if _slave1.pronoun == _slave2.pronoun>><<= $girl>>s<<else>>slaves<</if>> are unwilling, so you gather _slave1.slaveName up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave1)>> Then you pull $his knee<<if _slave1.missingLegs == 0>>s<</if>> up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly to @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly. You then turn your attention to _slave2.slaveName. _He2 had watched timidly as you had fucked _slave1.slaveName, but when you grab _him2, _he2 begins to cry softly. You ignore this, of course, and instead focus on pushing your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You can tell _he2 is trying _his2 hardest not to sob outright, and sure enough, a small sob escapes _his2 lips when you fill _him2 to the brim to the @@.green;applause of your guests.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation, despite their protesting.
+			The <<if _slave1.pronoun == _slave2.pronoun>><<= $girl>>s<<else>>slaves<</if>> are unwilling, so you gather _slave1.slaveName up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave1)>> Then you pull $his knee<<if hasBothLegs(_slave1)>>s<</if>> up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly to @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly. You then turn your attention to _slave2.slaveName. _He2 had watched timidly as you had fucked _slave1.slaveName, but when you grab _him2, _he2 begins to cry softly. You ignore this, of course, and instead focus on pushing your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You can tell _he2 is trying _his2 hardest not to sob outright, and sure enough, a small sob escapes _his2 lips when you fill _him2 to the brim to the @@.green;applause of your guests.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation, despite their protesting.
 		<<else>>
-			Your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>-to-be aren't particularly excited about what's coming, but they're fully prepared for it and have accepted it as a fact of life. There are worse things one can be than the slave-<<if $wife == _wife2>>$wife<<else>>spouse<</if>> of a wealthy arcology owner. You <<if !hasAnyLegs(_slave1)>>gather _slave1.slaveName.slaveName up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _slave1.slaveName's hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if _slave1.missingLegs == 0>>s<</if>> and drawing <<if _slave1.missingLegs == 0>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, their mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's just another part of being your slave. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You <<if (!hasAnyLegs(_slave1) && !hasAnyLegs(_slave2))>>also <</if>><<if !hasAnyLegs(_slave2)>>pick _him2 up, then <<else>>pull _him2 to _his2 feet and <</if>>pull _his2 g-string off in one swift motion, then maneuver your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You fuck _him2, hard, then fill _him2 to the brim @@.green;while your audience gives another round of applause.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation.
+			Your <<if $wife == _wife2>>$wives<<else>>spouses<</if>>-to-be aren't particularly excited about what's coming, but they're fully prepared for it and have accepted it as a fact of life. There are worse things one can be than the slave-<<if $wife == _wife2>>$wife<<else>>spouse<</if>> of a wealthy arcology owner. You <<if !hasAnyLegs(_slave1)>>gather _slave1.slaveName.slaveName up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _slave1.slaveName's hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if hasBothLegs(_slave1)>>s<</if>> and drawing <<if hasBothLegs(_slave1)>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, their mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's just another part of being your slave. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ Next, you turn your attention to _slave2.slaveName. You <<if (!hasAnyLegs(_slave1) && !hasAnyLegs(_slave2))>>also <</if>><<if !hasAnyLegs(_slave2)>>pick _him2 up, then <<else>>pull _him2 to _his2 feet and <</if>>pull _his2 g-string off in one swift motion, then maneuver your already-hard cock into _his2 <<if _slave2.mpreg == 1>>asshole<<else>>pussy<</if>>. You fuck _him2, hard, then fill _him2 to the brim @@.green;while your audience gives another round of applause.@@ You'll fuck them repeatedly over the next few days, ensuring impregnation.
 		<</if>>
 	<<else>>
 		<<if _slave1.fetish == "mindbroken">>
-			_slave1.slaveName is mindbroken, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He follows your motions like a ragdoll. You maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his knee<<if _slave1.missingLegs == 0>>s<</if>> up to give your guests a good view as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@
+			_slave1.slaveName is mindbroken, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He follows your motions like a ragdoll. You maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his knee<<if hasBothLegs(_slave1)>>s<</if>> up to give your guests a good view as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@
 		<<elseif _slave1.devotion+_slave1.trust >= 175>>
-			Then, you <<if !hasAnyLegs(_slave1)>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if _slave1.missingLegs == 0>>s<</if>> and drawing <<if _slave1.missingLegs == 0>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@
+			Then, you <<if !hasAnyLegs(_slave1)>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if hasBothLegs(_slave1)>>s<</if>> and drawing <<if hasBothLegs(_slave1)>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@
 		<<elseif _slave1.devotion < -20 && _slave1.trust > 20>>
-			_slave1.slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull <<if hasAnyLegs(_slave1)>>$his knee<<if _slave1.missingLegs == 0>>s<</if>><<else>>$him<</if>> up to give your guests a good view of the consummation. $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity.
+			_slave1.slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull <<if hasAnyLegs(_slave1)>>$his knee<<if hasBothLegs(_slave1)>>s<</if>><<else>>$him<</if>> up to give your guests a good view of the consummation. $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity.
 		<<elseif _slave1.devotion < -20>>
-			_slave1.slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave1)>> Then you pull $his knee<<if _slave1.missingLegs == 0>>s<</if>> up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly.
+			_slave1.slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave1)>> Then you pull $his knee<<if hasBothLegs(_slave1)>>s<</if>> up to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if _slave1.mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly.
 		<<else>>
-			_slave1.slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= $wife>> of a wealthy arcology owner. You <<if !hasAnyLegs(_slave1)>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if _slave1.missingLegs == 0>>s<</if>> and drawing <<if _slave1.missingLegs == 0>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@
+			_slave1.slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= $wife>> of a wealthy arcology owner. You <<if !hasAnyLegs(_slave1)>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if hasBothLegs(_slave1)>>s<</if>> and drawing <<if hasBothLegs(_slave1)>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@
 		<</if>>
 		Then, you turn your attention to _slave2.slaveName.
 		<<if _slave2.fetish == "mindbroken">>
-			_He2 is mindbroken, so you gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. _He2 follows your motions like a ragdoll. You maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> up to give your guests a good view as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. _He2 is left to face them, staring off into space. Though _he2 faces the crowd, _his2 mind is empty; this might as well be any other fucking to _him2. _He2 twitches ever so slightly when your seed flows into _him2, orgasming robotically to @@.green;more applause from your guests.@@
+			_He2 is mindbroken, so you gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. _He2 follows your motions like a ragdoll. You maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> up to give your guests a good view as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. _He2 is left to face them, staring off into space. Though _he2 faces the crowd, _his2 mind is empty; this might as well be any other fucking to _him2. _He2 twitches ever so slightly when your seed flows into _him2, orgasming robotically to @@.green;more applause from your guests.@@
 		<<elseif _slave2.devotion+_slave2.trust >= 175>>
-			Then, you <<if !hasAnyLegs(_slave2)>>gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. Showing considerable dexterity, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _his2 hand and pull _him2 to _his2 feet while _he2 shimmies out of _his2 panties. _He2 cocks _his2 hips for you and you slide your cock inside _him2 before taking _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> and drawing <<if _slave2.missingLegs == 0>>them<<else>>it<</if>> up to hold _him2 in midair, impaled on you<</if>>. _He2 is left to face your guests, watching raptly as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, it's @@.mediumaquamarine;concrete proof that _he2's special to you.@@ _He2 gasps when your seed flows into _him2, orgasming _him2self to @@.green;more applause from your guests.@@
+			Then, you <<if !hasAnyLegs(_slave2)>>gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. Showing considerable dexterity, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _his2 hand and pull _him2 to _his2 feet while _he2 shimmies out of _his2 panties. _He2 cocks _his2 hips for you and you slide your cock inside _him2 before taking _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> and drawing <<if hasBothLegs(_slave2)>>them<<else>>it<</if>> up to hold _him2 in midair, impaled on you<</if>>. _He2 is left to face your guests, watching raptly as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, it's @@.mediumaquamarine;concrete proof that _he2's special to you.@@ _He2 gasps when your seed flows into _him2, orgasming _him2self to @@.green;more applause from your guests.@@
 		<<elseif _slave2.devotion < -20 && _slave2.trust > 20>>
-			_He2 is unwilling, so you gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. _He2 was crying before, but this causes _him2 to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave2)>> Then you pull _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> up to give your guests a good view of the consummation.<</if>> _He2 is left to face them, watching sullenly as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, this is torture. _He2 gasps when your seed flows into _him2, faking an orgasm to @@.green;more applause from your guests.@@ At this, _he2 shoots you a dirty look, blaming you for this indignity.
+			_He2 is unwilling, so you gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. _He2 was crying before, but this causes _him2 to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave2)>> Then you pull _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> up to give your guests a good view of the consummation.<</if>> _He2 is left to face them, watching sullenly as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, this is torture. _He2 gasps when your seed flows into _him2, faking an orgasm to @@.green;more applause from your guests.@@ At this, _he2 shoots you a dirty look, blaming you for this indignity.
 		<<elseif _slave2.devotion < -20>>
-			_He2 is unwilling, so you gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. _He2 was crying before, but this causes _him2 to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave2)>> Then you pull _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> up to give your guests a good view of the consummation.<</if>> _He2 is left to face them, watching sullenly as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, this is torture. _He2 gasps when your seed flows into _him2, orgasming unwillingly @@.green;more applause from your guests.@@ At this, _he2 completely breaks down, blubbering like a child at the unwelcome warmth in _his2 lower belly.
+			_He2 is unwilling, so you gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. _He2 was crying before, but this causes _him2 to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if hasAnyLegs(_slave2)>> Then you pull _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> up to give your guests a good view of the consummation.<</if>> _He2 is left to face them, watching sullenly as you fuck _his2 fertile <<if _slave2.mpreg == 1>>asshole<<else>>cunt<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, this is torture. _He2 gasps when your seed flows into _him2, orgasming unwillingly @@.green;more applause from your guests.@@ At this, _he2 completely breaks down, blubbering like a child at the unwelcome warmth in _his2 lower belly.
 		<<else>>
-			_He2 isn't particularly excited about what's coming, but _he2's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= _wife2>> of a wealthy arcology owner. You <<if !hasAnyLegs(_slave2)>>gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. Showing considerable dexterity, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _his2 hand and pull _him2 to _his2 feet while _he2 shimmies out of _his2 panties. _He2 cocks _his2 hips for you and you slide your cock inside _him2 before taking _his2 knee<<if _slave2.missingLegs == 0>>s<</if>> and drawing <<if _slave2.missingLegs == 0>>them<<else>>it<</if>> up to hold _him2 in midair, impaled on you<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, it is what it is. _He2 gasps when your seed flows into _him2, orgasming shortly after to @@.green;more applause from your guests.@@
+			_He2 isn't particularly excited about what's coming, but _he2's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= _wife2>> of a wealthy arcology owner. You <<if !hasAnyLegs(_slave2)>>gather _him2 up and hold _him2 in front of you, pulling _his2 panties off as you do. Showing considerable dexterity, you maneuver your dick inside _him2 while holding _him2 against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take _his2 hand and pull _him2 to _his2 feet while _he2 shimmies out of _his2 panties. _He2 cocks _his2 hips for you and you slide your cock inside _him2 before taking _his2 knee<<if hasBothLegs(_slave2)>>s<</if>> and drawing <<if hasBothLegs(_slave2)>>them<<else>>it<</if>> up to hold _him2 in midair, impaled on you<</if>>. Though _his2 face is towards the crowd, _his2 mind is concentrated on your hard cock, pumping in and out of _him2 at an angle; to _him2, it is what it is. _He2 gasps when your seed flows into _him2, orgasming shortly after to @@.green;more applause from your guests.@@
 		<</if>>
 		You'll fuck them repeatedly over the next few days, ensuring impregnation<<if (_slave1.devotion < -20) && (_slave2.devotion < -20)>>, despite their protests<<elseif _slave1.devotion < -20>>, despite _slave1.slaveName's <<if _slave1.trust > 20>>efforts to defy you<<else>>protests<</if>><<elseif _slave2.devotion < -20>>, despite _slave2.slaveName's <<if _slave2.trust > 20>>efforts to defy you<<else>>protests<</if>><</if>>.
 	<</if>>
@@ -1402,7 +1402,7 @@
 			/* TODO: rewrite for slaves that can't walk */
 			They spent the day before resting and preparing themselves, if you can call sitting around mindlessly preparing. They spend most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they are extracted and taken off to be bathed.
 			<br><br>
-			They return shortly, looking exhausted but otherwise uncaring. They're naked still, their skin clean, and are <<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>carried<<else>>led<</if>> to you for the ceremony by other slaves. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They can't conceal their tiredness, and lean against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.missingArms == 3 && _slave2.missingArms == 3)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<else>><<if _slave1.missingArms == 3>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's finger<</if>> and another ring <<if _slave2.missingArms == 3>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's finger.<</if>><</if>> There is no ring for you, since this marriage does not bind you.
+			They return shortly, looking exhausted but otherwise uncaring. They're naked still, their skin clean, and are <<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>carried<<else>>led<</if>> to you for the ceremony by other slaves. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They can't conceal their tiredness, and lean against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (!hasAnyArms(_slave1) && !hasAnyArms(_slave2))>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<else>><<if !hasAnyArms(_slave1)>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's finger<</if>> and another ring <<if !hasAnyArms(_slave2)>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's finger.<</if>><</if>> There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			/* TODO: marked for rewrite */
 			Once the ceremony is complete, you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, and by the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing.
@@ -1410,7 +1410,7 @@
 			/* TODO: rewrite for slaves that can't walk */
 			They spent the day before resting and preparing themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed.
 			<br><br>
-			They return shortly, looking exhausted but rather proud of themselves for getting through all that. They're naked still, their skin clean, and <<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>are carried<<else>>come confidently<</if>> to stand by you for the ceremony. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well-traveled, and their tiredness. They do their best to conceal how ready to sleep they are, but they lean against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.missingArms == 3 && _slave2.missingArms == 3)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<else>><<if _slave1.missingArms == 3>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's finger<</if>> and another ring <<if _slave2.missingArms == 3>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's finger.<</if>><</if>> There is no ring for you, since this marriage does not bind you.
+			They return shortly, looking exhausted but rather proud of themselves for getting through all that. They're naked still, their skin clean, and <<if !hasAnyLegs(_slave1) && !hasAnyLegs(_slave2)>>are carried<<else>>come confidently<</if>> to stand by you for the ceremony. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well-traveled, and their tiredness. They do their best to conceal how ready to sleep they are, but they lean against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (!hasAnyArms(_slave1) && !hasAnyArms(_slave2))>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<else>><<if !hasAnyArms(_slave1)>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's finger<</if>> and another ring <<if !hasAnyArms(_slave2)>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's finger.<</if>><</if>> There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			/* TODO: marked for rewrite */
 			Once the ceremony is complete, you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle them in your arms, and by the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slave's chest rises and falls with their breathing.
@@ -1418,7 +1418,7 @@
 			/* TODO: rewrite for slaves that can't walk */
 			They spent the day before resting and trying to ready themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed.
 			<br><br>
-			They return shortly, looking exhausted and annoyed. They're naked still, their skin clean, and come reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They do their best to conceal their tiredness and look stronger than they are, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.missingArms == 3 && _slave2.missingArms == 3)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>on both of their trembling middle fingers.<<else>><<if _slave1.missingArms == 3>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's trembling finger<</if>> and another ring <<if _slave2.missingArms == 3>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's trembling finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you.
+			They return shortly, looking exhausted and annoyed. They're naked still, their skin clean, and come reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They do their best to conceal their tiredness and look stronger than they are, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (!hasAnyArms(_slave1) && !hasAnyArms(_slave2))>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>on both of their trembling middle fingers.<<else>><<if !hasAnyArms(_slave1)>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's trembling finger<</if>> and another ring <<if !hasAnyArms(_slave2)>>on a cord around _slave2.slaveName's neck, since _he2 lacks fingers to wear it on.<<else>>on _slave2.slaveName's trembling finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			/* TODO: marked for rewrite */
 			Once the ceremony is complete, you scoop up your new, protesting, slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their heads against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing. They squirms slightly in their sleep to the unwelcome feeling of your arm around them.
@@ -1426,7 +1426,7 @@
 			/* TODO: rewrite for slaves that can't walk */
 			They spent the day before resting and crying to themselves, and this was a necessary precaution. They spend most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that they'll be bound to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> from this day onward, so they must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName and _slave2.slaveName spend hours with numerous cocks inside them, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, they're extracted and taken off to be bathed.
 			<br><br>
-			They return shortly, looking exhausted and depressed. They're naked still, their skin clean, and come reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They do their best to conceal their tiredness out of fear of punishment, and they lean against you for support despite their feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.missingArms == 3 && _slave2.missingArms == 3)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.missingArms != 3) && (_slave2.missingArms != 3)>>on both of their trembling middle fingers.<<else>><<if _slave1.missingArms == 3>>on a cord around _slave1.slaveName's neck, since they lacks fingers to wear it on<<else>>on _slave1.slaveName's trembling finger<</if>> and another ring <<if _slave2.missingArms == 3>>on a cord around _slave2.slaveName's neck, since they lacks fingers to wear it on.<<else>>on _slave2.slaveName's trembling finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you.
+			They return shortly, looking exhausted and depressed. They're naked still, their skin clean, and come reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They do their best to conceal their tiredness out of fear of punishment, and they lean against you for support despite their feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (!hasAnyArms(_slave1) && !hasAnyArms(_slave2))>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.missingArms != 3) && (_slave2.missingArms != 3)>>on both of their trembling middle fingers.<<else>><<if !hasAnyArms(_slave1)>>on a cord around _slave1.slaveName's neck, since they lacks fingers to wear it on<<else>>on _slave1.slaveName's trembling finger<</if>> and another ring <<if !hasAnyArms(_slave2)>>on a cord around _slave2.slaveName's neck, since they lacks fingers to wear it on.<<else>>on _slave2.slaveName's trembling finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			/* TODO: marked for rewrite */
 			Once the ceremony is complete, you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing.
@@ -1436,7 +1436,7 @@
 			<br><br>
 			They return shortly, looking exhausted. They're naked still, their skin clean, and come to stand by you for the ceremony. The only evident signs that they've had sex with more than a hundred people today is their asses, which look rather well traveled, and their tiredness. They do their best to conceal it, leaning against you despite the lack of love between you.
 			/* TODO: double check the devotion requirements for this, rewrite as needed */
-			<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (_slave1.missingArms == 3 && _slave2.missingArms == 3)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>on both of their trembling middle fingers.<<else>><<if _slave1.missingArms == 3>>on a cord around _slave1.slaveName's neck, since they lacks fingers to wear it on<<else>>on _slave1.slaveName's <<if _slave1.devotion < -20 && _slave1.trust <= 20>>trembling <</if>>finger<</if>> and another ring <<if _slave2.missingArms == 3>>on a cord around _slave2.slaveName's neck, since they lacks fingers to wear it on.<<else>>on _slave2.slaveName's <<if _slave2.devotion < -20 && _slave2.trust <= 20>>trembling <</if>>finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you.
+			<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring<<if (!hasAnyArms(_slave1) && !hasAnyArms(_slave2))>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>on both of their trembling middle fingers.<<else>><<if !hasAnyArms(_slave1)>>on a cord around _slave1.slaveName's neck, since they lacks fingers to wear it on<<else>>on _slave1.slaveName's <<if _slave1.devotion < -20 && _slave1.trust <= 20>>trembling <</if>>finger<</if>> and another ring <<if !hasAnyArms(_slave2)>>on a cord around _slave2.slaveName's neck, since they lacks fingers to wear it on.<<else>>on _slave2.slaveName's <<if _slave2.devotion < -20 && _slave2.trust <= 20>>trembling <</if>>finger.<</if>><</if>>There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			/* TODO: marked for rewrite */
 			Once the ceremony is complete, you scoop up your new slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> to carry them back into the master bedroom. They rest their head against you, so tired that they're grateful for the break from standing. By the time they're home, they're fast asleep. You set them gently down on the bed and curl up behind them, feeling the animal warmth of their bodies as the exhausted slaves' chest rise and fall with their breathing.
@@ -1446,31 +1446,31 @@
 		<<if _slave1.fetish == "mindbroken">>
 			_slave1.slaveName spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 			<br><br>
-			$He returns shortly, looking exhausted but otherwise uncaring. $He's naked still, $his skin clean and _slave1.skin, and is led to you for the ceremony by another slave. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He can't conceal $his tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			$He returns shortly, looking exhausted but otherwise uncaring. $He's naked still, $his skin clean and _slave1.skin, and is led to you for the ceremony by another slave. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He can't conceal $his tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms(_slave1)>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 		<<elseif _slave1.devotion+_slave1.trust >= 175>>
 			_slave1.slaveName spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 			<br><br>
-			$He returns shortly, looking exhausted but rather proud of $himself for getting through all that. $He's naked still, $his skin clean and _slave1.skin, and comes confidently to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well-traveled, and $his tiredness. $He does $his best to conceal how ready to sleep $he is, but $he leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			$He returns shortly, looking exhausted but rather proud of $himself for getting through all that. $He's naked still, $his skin clean and _slave1.skin, and comes confidently to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well-traveled, and $his tiredness. $He does $his best to conceal how ready to sleep $he is, but $he leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms(_slave1)>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 		<<elseif _slave1.devotion < -20 && _slave1.trust > 20>>
 			_slave1.slaveName spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 			<br><br>
-			$He returns shortly, looking exhausted and annoyed. $He's naked still, $his skin clean and _slave1.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness and look stronger than $he is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			$He returns shortly, looking exhausted and annoyed. $He's naked still, $his skin clean and _slave1.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness and look stronger than $he is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms(_slave1)>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new, protesting, slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him.
 		<<elseif _slave1.devotion < -20>>
 			_slave1.slaveName spent the day before resting and crying to $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 			<br><br>
-			$He returns shortly, looking exhausted and depressed. $He's naked still, $his skin clean and _slave1.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness out of fear of punishment, and $he leans against you for support despite $his feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			$He returns shortly, looking exhausted and depressed. $He's naked still, $his skin clean and _slave1.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness out of fear of punishment, and $he leans against you for support despite $his feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms(_slave1)>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 		<<else>>
 			_slave1.slaveName spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. _slave1.slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 			<br><br>
-			$He returns shortly, looking exhausted. $He's naked still, $his skin clean and _slave1.skin, and comes to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if _slave1.missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			$He returns shortly, looking exhausted. $He's naked still, $his skin clean and _slave1.skin, and comes to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms(_slave1)>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 		<</if>>
@@ -1478,31 +1478,31 @@
 		<<if _slave2.fetish == "mindbroken">>
 			spent the day before resting and preparing _himself2, if you can call sitting around mindlessly preparing. _He2 spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed.
 			<br><br>
-			_He2 returns shortly, looking exhausted but otherwise uncaring. _He2's naked still, _his2 skin clean and _slave2.skin, and is led to you for the ceremony by another slave. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 can't conceal _his2 tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.missingArms == 3>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			_He2 returns shortly, looking exhausted but otherwise uncaring. _He2's naked still, _his2 skin clean and _slave2.skin, and is led to you for the ceremony by another slave. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 can't conceal _his2 tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if !hasAnyArms(_slave2)>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, and by the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing.
 		<<elseif _slave2.devotion+_slave2.trust >= 175>>
 			spent the day before resting and preparing _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed.
 			<br><br>
-			_He2 returns shortly, looking exhausted but rather proud of _himself2 for getting through all that. _He2's naked still, _his2 skin clean and _slave2.skin, and comes confidently to stand by you for the ceremony. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well-traveled, and _his2 tiredness. _He2 does _his2 best to conceal how ready to sleep _he2 is, but _he2 leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.missingArms == 3>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			_He2 returns shortly, looking exhausted but rather proud of _himself2 for getting through all that. _He2's naked still, _his2 skin clean and _slave2.skin, and comes confidently to stand by you for the ceremony. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well-traveled, and _his2 tiredness. _He2 does _his2 best to conceal how ready to sleep _he2 is, but _he2 leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if !hasAnyArms(_slave2)>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle _him2 in your arms, and by the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing.
 		<<elseif _slave2.devotion < -20 && _slave2.trust > 20>>
 			spent the day before resting and trying to ready _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed.
 			<br><br>
-			_He2 returns shortly, looking exhausted and annoyed. _He2's naked still, _his2 skin clean and _slave2.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal _his2 tiredness and look stronger than _he2 is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.missingArms == 3>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			_He2 returns shortly, looking exhausted and annoyed. _He2's naked still, _his2 skin clean and _slave2.skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal _his2 tiredness and look stronger than _he2 is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if !hasAnyArms(_slave2)>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new, protesting, slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing. _He2 squirms slightly in _his2 sleep to the unwelcome feeling of your arm around _him2.
 		<<elseif _slave2.devotion < -20>>
 			spent the day before resting and crying to _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed.
 			<br><br>
-			_He2 returns shortly, looking exhausted and depressed. _He2's naked still, _his2 skin clean and _slave2.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal _his2 tiredness out of fear of punishment, and _he2 leans against you for support despite _his2 feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.missingArms == 3>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			_He2 returns shortly, looking exhausted and depressed. _He2's naked still, _his2 skin clean and _slave2.skin, and comes reluctantly to stand by you for the ceremony, just wanting it to be over. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal _his2 tiredness out of fear of punishment, and _he2 leans against you for support despite _his2 feelings on the wedding and you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if !hasAnyArms(_slave2)>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing.
 		<<else>>
 			spent the day before resting and reluctantly preparing _himself2, and this was a necessary precaution. _He2 spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as _he2 takes cock after cock. The theory is that _he2'll be bound to you as your slave _wife2 from this day onward, so _he2 must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. _slave2.slaveName spends hours with numerous cocks inside _him2, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, _he2's extracted and taken off to be bathed.
 			<br><br>
-			_He2 returns shortly, looking exhausted. _He2's naked still, _his2 skin clean and _slave2.skin, and comes to stand by you for the ceremony. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if _slave2.missingArms == 3>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
+			_He2 returns shortly, looking exhausted. _He2's naked still, _his2 skin clean and _slave2.skin, and comes to stand by you for the ceremony. The only evident signs that _he2's had sex with more than a hundred people today is _his2 ass, which looks rather well traveled, and _his2 tiredness. _He2 does _his2 best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for _him2, and you place a simple steel ring <<if !hasAnyArms(_slave2)>>on a cord around _his2 neck, since _he2 lacks fingers to wear it on<<else>>on _his2 finger<</if>>. There is no ring for you, since this marriage does not bind you.
 			<br><br>
 			Once the ceremony is complete, you scoop up your new slave _wife2 to carry _him2 back into the master bedroom. _He2 rests _his2 head against you, so tired that _he2's grateful for the break from standing. By the time _he2's home, _he2's fast asleep. You set _him2 gently down on the bed and curl up behind _him2, feeling the animal warmth of _his2 body as the exhausted slave's chest rises and falls with _his2 breathing.
 		<</if>>
@@ -1794,7 +1794,7 @@
 	<br><br>
 	/* holy hell is the next line a mess */
 	/* good luck reading this next line */
-	_slave1.slaveName and _slave2.slaveName appear after everyone has had a chance to socialize, <<if (!hasAnyLegs(_slave1))>>_slave1.slaveName<</if>><<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>> and <<if (!hasAnyLegs(_slave2))>>_slave2.slaveName<</if>> being carried by <<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>other slaves<<elseif (hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>_slave1.slaveName<<elseif (!hasAnyLegs(_slave1)) && (hasAnyLegs(_slave2))>>_slave2.slaveName<</if>> since <</if>><<if (!hasAnyLegs(_slave1)) && (hasAnyLegs(_slave2))>>$he's a <<if (_slave1.amp == 1)>>quadruple<<elseif !hasBothArms(_slave1)>>triple<<else>>double<</if>> amputee and $he cannot walk,<<elseif (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>they're both <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>quadruple<<elseif (!hasBothArms(_slave1)) && (!hasBothArms(_slave2))>>triple<<elseif (_slave1.missingArms == 0) && (_slave2.missingArms == 0)>>double<</if>> amputees and cannot walk,<<elseif (hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>_he2's a <<if (_slave2.amp == 1)>>quadruple<<elseif !hasBothArms(_slave2)>>triple<<else>>double<</if>> amputee and _he2 cannot walk,<</if>> wearing beautiful bridal lingerie in
+	_slave1.slaveName and _slave2.slaveName appear after everyone has had a chance to socialize, <<if (!hasAnyLegs(_slave1))>>_slave1.slaveName<</if>><<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>> and <<if (!hasAnyLegs(_slave2))>>_slave2.slaveName<</if>> being carried by <<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>other slaves<<elseif (hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>_slave1.slaveName<<elseif (!hasAnyLegs(_slave1)) && (hasAnyLegs(_slave2))>>_slave2.slaveName<</if>> since <</if>><<if (!hasAnyLegs(_slave1)) && (hasAnyLegs(_slave2))>>$he's a <<if (_slave1.amp == 1)>>quadruple<<elseif !hasBothArms(_slave1)>>triple<<else>>double<</if>> amputee and $he cannot walk,<<elseif (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>they're both <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>quadruple<<elseif (!hasBothArms(_slave1)) && (!hasBothArms(_slave2))>>triple<<elseif (hasBothArms(_slave1)) && (hasBothArms(_slave2))>>double<</if>> amputees and cannot walk,<<elseif (hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>_he2's a <<if (_slave2.amp == 1)>>quadruple<<elseif !hasBothArms(_slave2)>>triple<<else>>double<</if>> amputee and _he2 cannot walk,<</if>> wearing beautiful bridal lingerie in
 
 	<<if (_slave1.vagina == 0 && _slave2.vagina == 0) || (_slave1.pregKnown == 1 && _slave2.pregKnown == 1) || ((_slave1.vagina < 0 && _slave1.anus == 0) && (_slave2.vagina < 0 && _slave2.anus == 0)) || ((_slave1.vagina < 0 && _slave1.boobs > 500) && (_slave2.vagina < 0 && _slave2.boobs > 500)) || (_slave1.vagina < 0 && _slave2.vagina < 0) || (_slave1.dick > 0 && _slave2.dick > 0) || ((_slave1.vagina > 0 || _slave1.anus > 0) && (_slave2.vagina > 0 || _slave2.anus > 0))>>
 		<<if (_slave1.vagina == 0)>>
@@ -2062,7 +2062,7 @@
 	<</if>>
 	<br><br>
 	/* good luck trying to read this line */
-	When they are in front of you, <<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>the slaves carrying their <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>limbless<<else>>legless<</if>> torsos sets them down on the floor in front of you and prop them up so their heads are level with your crotch<<else>>they get down on their knees so their heads are level with your crotch<</if>>. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring <<if (_slave1.missingArms == 3 && _slave2.missingArms == 3)>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>on both of their trembling middle fingers.<<else>><<if _slave1.missingArms == 3>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's <<if _slave1.devotion < -20 && _slave1.trust <= 20>>trembling <</if>>finger<</if>> and another ring <<if _slave2.missingArms == 3>>on a cord around _slave2.slaveName's neck, since $he lacks fingers to wear it on.<<else>>on _slave2.slaveName's <<if _slave2.devotion < -20 && _slave2.trust <= 20>>trembling <</if>>finger.<</if>><</if>> There is no ring for you, since this marriage does not bind you.
+	When they are in front of you, <<if (!hasAnyLegs(_slave1)) && (!hasAnyLegs(_slave2))>>the slaves carrying their <<if (_slave1.amp == 1) && (_slave2.amp == 1)>>limbless<<else>>legless<</if>> torsos sets them down on the floor in front of you and prop them up so their heads are level with your crotch<<else>>they get down on their knees so their heads are level with your crotch<</if>>. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for them, and you place a simple steel ring <<if (!hasAnyArms(_slave1) && !hasAnyArms(_slave2))>>on a cord around both of their necks, since they lack fingers to wear it on.<<elseif (_slave1.devotion >= -20 && _slave1.trust > 20) && (_slave2.devotion >= -20 && _slave2.trust > 20)>>on both of their middle fingers.<<elseif (_slave1.devotion < -20 && _slave1.trust <= 20) && (_slave1.devotion < -20 && _slave1.trust <= 20)>>on both of their trembling middle fingers.<<else>><<if !hasAnyArms(_slave1)>>on a cord around _slave1.slaveName's neck, since $he lacks fingers to wear it on<<else>>on _slave1.slaveName's <<if _slave1.devotion < -20 && _slave1.trust <= 20>>trembling <</if>>finger<</if>> and another ring <<if !hasAnyArms(_slave2)>>on a cord around _slave2.slaveName's neck, since $he lacks fingers to wear it on.<<else>>on _slave2.slaveName's <<if _slave2.devotion < -20 && _slave2.trust <= 20>>trembling <</if>>finger.<</if>><</if>> There is no ring for you, since this marriage does not bind you.
 	<br>
 	<<if $PC.surname && (_slave1.slaveSurname != $PC.surname && _slave2.surname != $PC.surname)>>
 		<br><br><span id="surnaming">
diff --git a/src/uncategorized/seWeddingSingle.tw b/src/uncategorized/seWeddingSingle.tw
index d31f04e0b41..4c8694f042e 100644
--- a/src/uncategorized/seWeddingSingle.tw
+++ b/src/uncategorized/seWeddingSingle.tw
@@ -288,7 +288,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 
 	The ceremony to bind <<= SlaveFullName($slaves[_wedS])>> to you as your slave $wife, and $his womb to you as your private breeding ground, is a polite affair which you host in the lower floor of your penthouse. <<if $arcologies[0].FSRestart != "unset" && ($slaves[_wedS].breedingMark == 0 || $propOutcome == 0)>>Barely anyone is there, mostly lower-class citizens, several accompanied by their slaves. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. There is a distinct air of unrest in the room, as if the absent Elites' distaste of your actions came in their place.<<else>>All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married and fucked pregnant tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.<</if>>
 	<br><br>
-	$slaves[_wedS].slaveName appears after everyone has had a chance to socialize,<<if ($slaves[_wedS].missingLegs == 3)>> carried by another slave since $he's a <<if ($slaves[_wedS].amp == 1)>>quadruple<<elseif $slaves[_wedS].missingArms != 0>>triple<<else>>double<</if>> amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in
+	$slaves[_wedS].slaveName appears after everyone has had a chance to socialize,<<if (!hasAnyLegs($slaves[_wedS]))>> carried by another slave since $he's a <<if ($slaves[_wedS].amp == 1)>>quadruple<<elseif !hasBothArms($slaves[_wedS])>>triple<<else>>double<</if>> amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in
 	<<if ($slaves[_wedS].vagina == 0)>>
 		white, since $he's a virgin.
 	<<elseif ($slaves[_wedS].pregKnown == 1)>>
@@ -352,7 +352,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 			$His lacy g-string covers $his womanhood demurely.
 		<</if>>
 	<</if>>
-	There is no aisle for $him to <<if $slaves[_wedS].missingLegs == 3>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $slaves[_wedS].missingLegs == 3>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you
+	There is no aisle for $him to <<if !hasAnyLegs($slaves[_wedS])>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if !hasAnyLegs($slaves[_wedS])>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you
 	<<if $slaves[_wedS].fetish == "mindbroken">>
 		despite the fact that $he had to be pushed into walking towards you.
 	<<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>>
@@ -366,24 +366,24 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 	<</if>>
 	<br><br>
 	When $he's in front of you,
-	<<if $slaves[_wedS].missingLegs == 3>>
+	<<if !hasAnyLegs($slaves[_wedS])>>
 		the slave carrying $his <<if $slaves[_wedS].amp == 1>>limbless<<else>>legless<</if>> torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch.
 	<<else>>
 		<<if $slaves[_wedS].fetish == "mindbroken">>
-			you push $him onto $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> so $his head
+			you push $him onto $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> so $his head
 		<<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>>
-			$he happily gets down on $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> so $his head
+			$he happily gets down on $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> so $his head
 		<<elseif $slaves[_wedS].devotion < -20 && $slaves[_wedS].trust > 20>>
-			$he slowly lowers $himself onto $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> so $his head
+			$he slowly lowers $himself onto $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> so $his head
 		<<elseif $slaves[_wedS].devotion < -20>>
-			$he quickly lowers $himself onto $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> so $his tear-streaked face
+			$he quickly lowers $himself onto $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> so $his tear-streaked face
 		<<else>>
-			$he gets down on $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> so $his head
+			$he gets down on $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> so $his head
 		<</if>>
 	<</if>>
 	is level with your crotch.
 	<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring
-	<<if $slaves[_wedS].missingArms == 3>>
+	<<if !hasAnyArms($slaves[_wedS])>>
 		on a cord around $his neck, since $he lacks fingers to wear it on.
 	<<else>>
 		on $his <<if $slaves[_wedS].devotion < -20 && $slaves[_wedS].trust <= 20>>trembling <</if>>finger.
@@ -413,15 +413,15 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 	<</if>>
 	<br><br>
 	<<if $slaves[_wedS].fetish == "mindbroken">>
-		$slaves[_wedS].slaveName is mindbroken, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He follows your motions like a ragdoll. You maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> up to give your guests a good view as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
+		$slaves[_wedS].slaveName is mindbroken, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He follows your motions like a ragdoll. You maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>. Then you pull $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> up to give your guests a good view as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. $He is left to face them, staring off into space. Though $he faces the crowd, $his mind is empty; this might as well be any other fucking to $him. $He twitches ever so slightly when your seed flows into $him, orgasming robotically to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
 	<<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>>
-		Then, you <<if $slaves[_wedS].missingLegs == 3>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> and drawing <<if $slaves[_wedS].missingLegs == 0>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
+		Then, you <<if !hasAnyLegs($slaves[_wedS])>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> and drawing <<if hasBothLegs($slaves[_wedS])>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. $He is left to face your guests, watching raptly as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it's @@.mediumaquamarine;concrete proof that $he's special to you.@@ $He gasps when your seed flows into $him, orgasming $himself to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
 	<<elseif $slaves[_wedS].devotion < -20 && $slaves[_wedS].trust > 20>>
-		$slaves[_wedS].slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $slaves[_wedS].missingLegs != 3>> Then you pull $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his efforts to defy you.
+		$slaves[_wedS].slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and tear up in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $slaves[_wedS].missingLegs != 3>> Then you pull $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, faking an orgasm to @@.green;applause from your guests.@@ At this, $he shoots you a dirty look, blaming you for this indignity. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his efforts to defy you.
 	<<elseif $slaves[_wedS].devotion < -20>>
-		$slaves[_wedS].slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $slaves[_wedS].missingLegs != 3>> Then you pull $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his protesting.
+		$slaves[_wedS].slaveName is unwilling, so you gather $him up and hold $him in front of you, pulling $his panties off as you do. $He was crying before, but this causes $him to tremble and sob loudly in anticipation of what's next. Ignoring this, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>.<<if $slaves[_wedS].missingLegs != 3>> Then you pull $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> to give your guests a good view of the consummation.<</if>> $He is left to face them, watching sullenly as you fuck $his fertile <<if $slaves[_wedS].mpreg == 1>>asshole<<else>>cunt<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, this is torture. $He gasps when your seed flows into $him, orgasming unwillingly @@.green;applause from your guests.@@ At this, $he completely breaks down, blubbering like a child at the unwelcome warmth in $his lower belly. You'll fuck $him repeatedly over the next few days, ensuring impregnation, despite $his protesting.
 	<<else>>
-		$slaves[_wedS].slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= $wife>> of a wealthy arcology owner. You <<if $slaves[_wedS].missingLegs == 3>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> and drawing <<if $slaves[_wedS].missingLegs == 0>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
+		$slaves[_wedS].slaveName isn't particularly excited about what's coming, but $he's fully prepared for it and accepted it as a fact of life. There are worse things one can be than the slave-<<= $wife>> of a wealthy arcology owner. You <<if !hasAnyLegs($slaves[_wedS])>>gather $him up and hold $him in front of you, pulling $his panties off as you do. Showing considerable dexterity, you maneuver your dick inside $him while holding $him against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>><<else>>take $his hand and pull $him to $his feet while $he shimmies out of $his panties. $He cocks $his hips for you and you slide your cock inside $him before taking $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> and drawing <<if hasBothLegs($slaves[_wedS])>>them<<else>>it<</if>> up to hold $him in midair, impaled on you<</if>>. Though $his face is towards the crowd, $his mind is concentrated on your hard cock, pumping in and out of $him at an angle; to $him, it is what it is. $He gasps when your seed flows into $him, orgasming shortly after to @@.green;applause from your guests.@@ You'll fuck $him repeatedly over the next few days, ensuring impregnation.
 	<</if>>
 	<<set $slaves[_wedS].preg = 1, $slaves[_wedS].pregKnown = 1, $slaves[_wedS].pregWeek = 1>>
 	<<set $slaves[_wedS].pregType = setPregType($slaves[_wedS])>>
@@ -536,19 +536,19 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 	<<if $slaves[_wedS].fetish == "mindbroken">>
 		$He spent the day before resting and preparing $himself, if you can call sitting around mindlessly preparing. $He spends most of the daylong party at the center of a nonstop gangbang, occasionally moaning as more of a physical reaction than anything. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter emptiness. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		$He returns shortly, looking exhausted but otherwise uncaring. $He's naked still, $his skin clean and $slaves[_wedS].skin, and is led to you for the ceremony by another slave. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He can't conceal $his tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted but otherwise uncaring. $He's naked still, $his skin clean and $slaves[_wedS].skin, and is led to you for the ceremony by another slave. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He can't conceal $his tiredness, and leans against you subconsciously. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms($slaves[_wedS])>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
 		Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 	<<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>>
 		$He spent the day before resting and preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, @@.green;your guests take part with enthusiasm,@@ many having brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		$He returns shortly, looking exhausted but rather proud of $himself for getting through all that. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes confidently to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well-traveled, and $his tiredness. $He does $his best to conceal how ready to sleep $he is, but $he leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted but rather proud of $himself for getting through all that. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes confidently to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well-traveled, and $his tiredness. $He does $his best to conceal how ready to sleep $he is, but $he leans against you a little. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms($slaves[_wedS])>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
 		Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>> as you cradle $him in your arms, and by the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 	<<elseif $slaves[_wedS].devotion < -20 && $slaves[_wedS].trust > 20>>
 		$He spent the day before resting and trying to ready $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, screaming mixed cries of pleasure and horror. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's utter unwillingness. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		$He returns shortly, looking exhausted and annoyed. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness and look stronger than $he is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted and annoyed. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes reluctantly to stand by you for the ceremony, glaring at you the whole time. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal $his tiredness and look stronger than $he is, choosing to struggle to stand instead of leaning against you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms($slaves[_wedS])>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
 		Once the ceremony is complete, you scoop up your new, protesting, slave $wife to carry $him back into the master bedroom. $He rests $his head against your <<if $PC.boobs == 1>>breasts<<elseif $PC.title == 0>>flat chest<<else>>strong chest<</if>>, simply too tired to care anymore. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing. $He squirms slightly in $his sleep to the unwelcome feeling of your arm around $him.
 	<<elseif $slaves[_wedS].devotion < -20>>
@@ -560,7 +560,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 	<<else>>
 		$He spent the day before resting and reluctantly preparing $himself, and this was a necessary precaution. $He spends most of the daylong party at the center of a nonstop gangbang, moaning and wincing as $he takes cock after cock. The theory is that $he'll be bound to you as your slave $wife from this day onward, so $he must get the promiscuity that is a sex slave's responsibility out of the way now. Whatever their opinions on the idea, your guests take part with enthusiasm, completely unhampered by your slave's lack of passion. Many brought their own slaves to participate, too. $slaves[_wedS].slaveName spends hours with numerous cocks inside $him, with attending slaves using their mouths on any erogenous zones they can reach. When the moment of the ceremony nears, $he's extracted and taken off to be bathed.
 		<br><br>
-		$He returns shortly, looking exhausted. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+		$He returns shortly, looking exhausted. $He's naked still, $his skin clean and $slaves[_wedS].skin, and comes to stand by you for the ceremony. The only evident signs that $he's had sex with more than a hundred people today is $his ass, which looks rather well traveled, and $his tiredness. $He does $his best to conceal it, leaning against you despite the lack of love between you. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms($slaves[_wedS])>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 		<br><br>
 		Once the ceremony is complete, you scoop up your new slave $wife to carry $him back into the master bedroom. $He rests $his head against you, so tired that $he's grateful for the break from standing. By the time $he's home, $he's fast asleep. You set $him gently down on the bed and curl up behind $him, feeling the animal warmth of $his body as the exhausted slave's chest rises and falls with $his breathing.
 	<</if>>
@@ -680,7 +680,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 
 	The ceremony to bind <<= SlaveFullName($slaves[_wedS])>> to you as your slave $wife is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.
 	<br><br>
-	$slaves[_wedS].slaveName appears after everyone has had a chance to socialize,<<if ($slaves[_wedS].missingLegs == 3)>> carried by another slave since $he's a <<if ($slaves[_wedS].amp == 1)>>quadruple<<elseif $slaves[_wedS].missingArms != 0>>triple<<else>>double<</if>> amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in
+	$slaves[_wedS].slaveName appears after everyone has had a chance to socialize,<<if (!hasAnyLegs($slaves[_wedS]))>> carried by another slave since $he's a <<if ($slaves[_wedS].amp == 1)>>quadruple<<elseif $slaves[_wedS].missingArms != 0>>triple<<else>>double<</if>> amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in
 	<<if ($slaves[_wedS].vagina == 0)>>
 		white, since $he's a virgin.
 	<<elseif ($slaves[_wedS].pregKnown == 1)>>
@@ -744,7 +744,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 			$His lacy g-string covers $his womanhood demurely.
 		<</if>>
 	<</if>>
-	There is no aisle for $him to <<if $slaves[_wedS].missingLegs == 3>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $slaves[_wedS].missingLegs == 3>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you
+	There is no aisle for $him to <<if !hasAnyLegs($slaves[_wedS])>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if !hasAnyLegs($slaves[_wedS])>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you
 	<<if $slaves[_wedS].fetish == "mindbroken">>
 		despite the fact that $he had to be pushed into walking towards you.
 	<<elseif $slaves[_wedS].devotion+$slaves[_wedS].trust >= 175>>
@@ -757,7 +757,7 @@ In the days leading up to your wedding, $slaves[_wedS].slaveName spent $his time
 		of $his own choice, and $he does so willingly.
 	<</if>>
 	<br><br>
-	When $he's in front of you, <<if $slaves[_wedS].missingLegs == 3>>the slave carrying $his <<if $slaves[_wedS].amp == 1>>limbless<<else>>legless<</if>> torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch<<else>>$he gets down on $his knee<<if $slaves[_wedS].missingLegs == 0>>s<</if>> so $his head is level with your crotch<</if>>. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if $slaves[_wedS].missingArms == 3>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+	When $he's in front of you, <<if !hasAnyLegs($slaves[_wedS])>>the slave carrying $his <<if $slaves[_wedS].amp == 1>>limbless<<else>>legless<</if>> torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch<<else>>$he gets down on $his knee<<if hasBothLegs($slaves[_wedS])>>s<</if>> so $his head is level with your crotch<</if>>. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms($slaves[_wedS])>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 	<br>
 	<<if $PC.surname && $slaves[_wedS].slaveSurname != $PC.surname>>
 		<br><br><span id="surnaming">
diff --git a/src/uncategorized/seWeddingTriple.tw b/src/uncategorized/seWeddingTriple.tw
index b5b5b7561b7..839aa7e1029 100644
--- a/src/uncategorized/seWeddingTriple.tw
+++ b/src/uncategorized/seWeddingTriple.tw
@@ -218,7 +218,7 @@ In the days leading up to your wedding, your <<if $wife == _wife2>>$wives<<else>
 
 	The ceremony to bind the slaves to you as your slave <<if $wife == _wife2>>$wives<<else>>spouses<</if>> is a polite affair which you host in the lower floor of your penthouse. All the arcology's most prominent citizens are there, most with a favored slave or two and some even with their slave wives. Many of your other slaves, that is your slaves who are not being married tonight, are present to serve your guests, but are dressed more conservatively than usual. When assignations between citizen and slave develop, guests are politely encouraged to perform them in side rooms rather than out in view of the main gathering.
 	<br><br>
-	Your soon-to-be-brides appear after everyone has had a chance to socialize,<<if ($activeSlave.missingLegs == 3)>> carried by another slave since $he's a <<if ($activeSlave.amp == 1)>>quadruple<<elseif !hasBothArms($activeSlave)>>triple<<else>>double<</if>> amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in
+	Your soon-to-be-brides appear after everyone has had a chance to socialize,<<if (!hasAnyLegs($activeSlave))>> carried by another slave since $he's a <<if ($activeSlave.amp == 1)>>quadruple<<elseif !hasBothArms($activeSlave)>>triple<<else>>double<</if>> amputee and $he cannot walk,<</if>> wearing beautiful bridal lingerie in
 	<<if ($activeSlave.vagina == 0)>>
 		white, since $he's a virgin.
 	<<elseif ($activeSlave.pregKnown == 1)>>
@@ -282,7 +282,7 @@ In the days leading up to your wedding, your <<if $wife == _wife2>>$wives<<else>
 			$His lacy g-string covers $his womanhood demurely.
 		<</if>>
 	<</if>>
-	There is no aisle for $him to <<if $activeSlave.missingLegs == 3>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if $activeSlave.missingLegs == 3>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you
+	There is no aisle for $him to <<if !hasAnyLegs($activeSlave)>>be carried<<else>>walk<</if>> down, just a small space at the head of the room where you're standing alone, and there's no one to <<if !hasAnyLegs($activeSlave)>>walk alongside the slave carrying<<else>>walk<</if>> $him there; this symbolizes $his submission to you
 	<<if $activeSlave.fetish == "mindbroken">>
 		despite the fact that $he had to be pushed into walking towards you.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
@@ -295,7 +295,7 @@ In the days leading up to your wedding, your <<if $wife == _wife2>>$wives<<else>
 		of $his own choice, and $he does so willingly.
 	<</if>>
 	<br><br>
-	When $he's in front of you, <<if $activeSlave.missingLegs == 3>>the slave carrying $his <<if $activeSlave.amp == 1>>limbless<<else>>legless<</if>> torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch<<else>>$he gets down on $his knee<<if hasBothLegs($activeSlave)>>s<</if>> so $his head is level with your crotch<</if>>. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms($activeSlave)>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
+	When $he's in front of you, <<if !hasAnyLegs($activeSlave)>>the slave carrying $his <<if $activeSlave.amp == 1>>limbless<<else>>legless<</if>> torso sets $him down on the floor in front of you and props $him up so $his head is level with your crotch<<else>>$he gets down on $his knee<<if hasBothLegs($activeSlave)>>s<</if>> so $his head is level with your crotch<</if>>. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> reads the short recitation for $him, and you place a simple steel ring <<if !hasAnyArms($activeSlave)>>on a cord around $his neck, since $he lacks fingers to wear it on<<else>>on $his finger<</if>>. There is no ring for you, since this marriage does not bind you.
 	<br>
 	<<if $PC.surname && $activeSlave.slaveSurname != $PC.surname>>
 		<br><br><span id="surnaming">
diff --git a/src/uncategorized/spaReport.tw b/src/uncategorized/spaReport.tw
index f894da4a673..2e6f7b1808d 100644
--- a/src/uncategorized/spaReport.tw
+++ b/src/uncategorized/spaReport.tw
@@ -67,7 +67,7 @@
 		$Attendant.slaveName lets the slaves resting in the spa take the lead sexually, doing $his best to please them.
 		<<set _idleBonus++>>
 	<<elseif ($Attendant.fetishKnown == 1)>>
-		$Attendant.slaveName can't keep $his hand<<if $Attendant.missingArms == 0>>s<</if>> to $himself, preventing the slaves in the spa from relaxing completely.
+		$Attendant.slaveName can't keep $his hand<<if hasBothArms($Attendant)>>s<</if>> to $himself, preventing the slaves in the spa from relaxing completely.
 	<</if>>
 	<<if ($Attendant.visualAge > 35)>>
 		$His apparent maturity encourages the slaves in the spa to relax and pour out their troubles to $him.
@@ -136,7 +136,7 @@
 		<<case "$He is remembered for winning best in show as a cockmilker.">>
 			<<if ($slaves[$i].balls > 6) && ($slaves[$i].dick != 0)>>
 				<<if $Attendant.fetish == "cumslut">>
-					$He can't keep $his hand<<if $Attendant.missingArms == 0>>s<</if>> off $slaves[$i].slaveName's cock and balls, but _he2 doesn't mind being milked constantly. Before long, strands of cum can be found floating all throughout the bath.
+					$He can't keep $his hand<<if hasBothArms($Attendant)>>s<</if>> off $slaves[$i].slaveName's cock and balls, but _he2 doesn't mind being milked constantly. Before long, strands of cum can be found floating all throughout the bath.
 					<<set $Attendant.fetishStrength += 4, $slaves[_FLs].fetishStrength += 4>>
 				<<else>>
 					$He does $his best to accommodate $slaves[$i].slaveName's massive genitals and tends to _him2 whenever _he2 feels a need for release.
@@ -150,7 +150,7 @@
 		<<case "$He is remembered for winning best in show as a dairy cow.">>
 			<<if ($slaves[$i].lactation > 0) && (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>>
 				<<if $Attendant.fetish == "boobs">>
-					$He can't keep $his hand<<if $Attendant.missingArms == 0>>s<</if>> off $slaves[$i].slaveName's huge breasts, but _he2 doesn't mind being milked constantly. Before long the bath gains a white tint.
+					$He can't keep $his hand<<if hasBothArms($Attendant)>>s<</if>> off $slaves[$i].slaveName's huge breasts, but _he2 doesn't mind being milked constantly. Before long the bath gains a white tint.
 					<<set $Attendant.fetishStrength += 4, $slaves[_FLs].fetishStrength += 4>>
 				<<else>>
 					$He does $his best to accommodate $slaves[$i].slaveName's massive breasts and tends to _him2 whenever _he2 feels a need for release.
@@ -164,7 +164,7 @@
 		<<case "$He is remembered for winning best in show as a breeder.">>
 			<<if $slaves[$i].bellyPreg >= 5000>>
 				<<if $Attendant.fetish == "pregnancy">>
-					$He can't keep $his hand<<if $Attendant.missingArms == 0>>s<</if>> off $slaves[$i].slaveName's pregnancy, but _he2 doesn't mind _his2 full belly being fondled.
+					$He can't keep $his hand<<if hasBothArms($Attendant)>>s<</if>> off $slaves[$i].slaveName's pregnancy, but _he2 doesn't mind _his2 full belly being fondled.
 					<<set $Attendant.fetishStrength += 4, $slaves[_FLs].fetishStrength += 4>>
 				<<else>>
 					$He does $his best to accommodate $slaves[$i].slaveName's pregnancy and to make sure the mother-to-be is happy and comfortable.
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 734d1f0346a..45eda7f1a56 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -2748,7 +2748,7 @@ $He's got a
 			<</if>>
 		<<elseif ($activeSlave.dick > 8)>>
 			$He's too huge for $his cardiovascular system to create even the beginnings of an erection. $His cock is a soft, sensitive monolith<<if ($activeSlave.dick*6) > $activeSlave.height>> bigger than $his body<<elseif ($activeSlave.dick*6) > ($activeSlave.height/2)>> the size of one of $his legs<<else>> the size of one of $his arms<</if>>,
-			<<if $activeSlave.missingLegs == 3 && (($activeSlave.dick*6) > ($activeSlave.height/2))>>
+			<<if !hasAnyLegs($activeSlave) && (($activeSlave.dick*6) > ($activeSlave.height/2))>>
 				or would be if $he had any of those.
 			<<elseif !hasAnyArms($activeSlave) && (($activeSlave.dick*6) <= ($activeSlave.height/2))>>
 				or would be if $he had any of those.
diff --git a/src/utility/descriptionWidgetsStyle.tw b/src/utility/descriptionWidgetsStyle.tw
index ecd9867f5a0..7598af9e5be 100644
--- a/src/utility/descriptionWidgetsStyle.tw
+++ b/src/utility/descriptionWidgetsStyle.tw
@@ -17,7 +17,7 @@ $activeSlave.slaveName is
 
 <<case "conservative clothing">>
 	including
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		a pretty silk blouse.
 	<<else>>
 		nice slacks, a pretty silk blouse, and
@@ -25,7 +25,7 @@ $activeSlave.slaveName is
 	<</if>>
 <<case "chains">>
 	looped tightly around $his body wherever they can make $his most uncomfortable.
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* no description */
 	<<else>>
 		On $his feet, $he's wearing
@@ -34,7 +34,7 @@ $activeSlave.slaveName is
 
 <<case "Western clothing">>
 	including a flannel
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		shirt and a cowboy hat.
 	<<else>>
 		shirt, chaps, a cowboy hat, and
@@ -43,7 +43,7 @@ $activeSlave.slaveName is
 
 <<case "body oil">>
 	rubbed into every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of exposed skin to show off $his body.
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* no description yet */
 	<<else>>
 		$He's wearing
@@ -52,7 +52,7 @@ $activeSlave.slaveName is
 
 <<case "a toga">>
 	made of sturdy white linen, appropriate for a female sex
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		worker.
 	<<else>>
 		worker, and
@@ -61,7 +61,7 @@ $activeSlave.slaveName is
 
 <<case "a huipil">>
 	made of beautiful
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		silk.
 	<<else>>
 		silk, and
@@ -70,7 +70,7 @@ $activeSlave.slaveName is
 
 <<case "a slutty qipao">>
 	made of beautiful
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		silk.
 	<<else>>
 		silk, and
@@ -79,7 +79,7 @@ $activeSlave.slaveName is
 
 <<case "spats and a tank top">>
 	including
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		a comfortable top.
 	<<else>>
 		a comfortable top along with form fitting shorts and
@@ -88,7 +88,7 @@ $activeSlave.slaveName is
 
 <<case "uncomfortable straps">>
 	which are in the shape of sturdy lingerie, except that wherever the straps cross a nipple or a hole, there is a steel ring to permit access.
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* No description yet */
 	<<else>>
 		$He is bound by
@@ -97,7 +97,7 @@ $activeSlave.slaveName is
 
 <<case "shibari ropes">>
 	bound tightly around $his body.
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* No description yet */
 	<<else>>
 		$He is bound by
@@ -106,7 +106,7 @@ $activeSlave.slaveName is
 
 <<case "restrictive latex">>
 	which covers everything except $his mouth, breasts, and genitals.
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* No description yet */
 	<<else>>
 		Even lower down, $he is squeezed by
@@ -115,7 +115,7 @@ $activeSlave.slaveName is
 
 <<case "a latex catsuit">>
 	shiny and supple latex hugging every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $his body below the neck.
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* no description yet */
 	<<else>>
 		$His latex enclosed feet fit snugly into
@@ -124,7 +124,7 @@ $activeSlave.slaveName is
 
 <<case "attractive lingerie">>
 	including a lovely bra with holes to let $his nipples poke through, a pretty g-string,
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		and a garter belt.
 		<<if ($activeSlave.vagina == 0)>>
 			$His lingerie is virgin white.
@@ -194,7 +194,7 @@ $activeSlave.slaveName is
 
 <<case "kitty lingerie">>
 	consisting of a ruffled lace bra with a window shaped like a cat's head on the front and center,
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		and a pair of silken panties tied with lace, with stylized cat ears in the front and a paw print on the back.
 	<<else>>
 		a pair of silken panties tied with lace, with stylized cat ears in the front and a paw print on the back, and
@@ -203,7 +203,7 @@ $activeSlave.slaveName is
 
 <<case "a maternity dress">>
 	including a long loose dress made to stretch with a low cut neck designed for easy breast
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		exposure.
 	<<else>>
 		exposure, and
@@ -212,7 +212,7 @@ $activeSlave.slaveName is
 
 <<case "stretch pants and a crop-top">>
 	including
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		a tight, low-cut, midriff exposing crop-top and a legless pair of stretch pants to slip over $his limbless bottom.
 	<<else>>
 		a tight, low-cut, midriff exposing crop-top, a pair of stretch pants, and
@@ -220,7 +220,7 @@ $activeSlave.slaveName is
 	<</if>>
 
 <<case "a succubus outfit">>
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		including a lovely bra with holes to let $his nipples poke through, a pretty g-string, and a garter belt.
 	<<else>>
 		consisting of a short red leather corset, an even shorter skirt of the same material, and
@@ -229,7 +229,7 @@ $activeSlave.slaveName is
 
 <<case "a fallen nuns habit">>
 	a kinky latex affair that manages to look enough like traditional religious garb to be thoroughly sacrilegious.
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* no description yet */
 	<<else>>
 		$He is wearing
@@ -238,7 +238,7 @@ $activeSlave.slaveName is
 
 <<case "a chattel habit">>
 	the revealing white and gold vestments of an ordained sex slave.
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* No description yet */
 	<<else>>
 		They include
@@ -247,7 +247,7 @@ $activeSlave.slaveName is
 
 <<case "a penitent nuns habit">>
 	made of roughspun sackcloth designed to chafe the
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		wearer.
 	<<else>>
 		wearer, and
@@ -256,7 +256,7 @@ $activeSlave.slaveName is
 
 <<case "a string bikini">>
 	which passes around $his nipples and <<if $activeSlave.dick == 1>>dick<<elseif $activeSlave.vagina == -1>>smooth groin<<else>>pussy<</if>> rather than covering
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		them.
 	<<else>>
 		them, and
@@ -265,7 +265,7 @@ $activeSlave.slaveName is
 
 <<case "a scalemail bikini">>
 	with leather insides for
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		comfort.
 	<<else>>
 		comfort, and
@@ -276,7 +276,7 @@ $activeSlave.slaveName is
 	a simple garment that hugs $his
 	<<if ($activeSlave.amp == 1)>>
 		limbless body closely and comfortably.
-	<<elseif ($activeSlave.missingLegs == 3)>>
+	<<elseif (!hasAnyLegs($activeSlave))>>
 		body closely and comfortably.
 	<<else>>
 		body closely and comfortably, and
@@ -308,7 +308,7 @@ $activeSlave.slaveName is
 	<</if>>
 	<<if ($activeSlave.amp == 1)>>
 		and lacks arm or leg holes, so $his limbless torso is in a net.
-	<<elseif ($activeSlave.missingLegs == 3)>>
+	<<elseif (!hasAnyLegs($activeSlave))>>
 		and lacks leg holes, so $his body is in a net.
 	<<else>>
 		and
@@ -354,7 +354,7 @@ $activeSlave.slaveName is
 	<<else>>
 		"Property of <<= PlayerName()>>" across the front.
 	<</if>>
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		/* no description yet */
 	<<else>>
 		The look is completed by wearing
@@ -365,7 +365,7 @@ $activeSlave.slaveName is
 	a gorgeous affair
 	<<if ($activeSlave.amp == 1)>>
 		tailored to favor $his lack of arms and legs.
-	<<elseif $activeSlave.missingLegs == 3>>
+	<<elseif !hasAnyLegs($activeSlave)>>
 		with cuts that offer tantalizing glimpses of delicate flesh.
 	<<else>>
 		with cuts that offer tantalizing glimpses of delicate flesh.
@@ -375,7 +375,7 @@ $activeSlave.slaveName is
 
 <<case "slutty business attire">>
 	a suit jacket cut to show a great deal of
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		cleavage and a short skirt.
 	<<else>>
 		cleavage and a short skirt with
@@ -384,7 +384,7 @@ $activeSlave.slaveName is
 
 <<case "nice business attire">>
 	a suit jacket and a nice
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		skirt.
 	<<else>>
 		skirt with
@@ -393,7 +393,7 @@ $activeSlave.slaveName is
 
 <<case "a ball gown">>
 	a majestically grand silken dress for formal
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		occasions.
 	<<else>>
 		occasions, stockings, and
@@ -402,7 +402,7 @@ $activeSlave.slaveName is
 
 <<case "a halter top dress">>
 	an extravagant garment showing off $his bare
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		back.
 	<<else>>
 		back,
@@ -411,7 +411,7 @@ $activeSlave.slaveName is
 
 <<case "a mini dress">>
 	a body hugging strapless number that shows as much skin as it
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		covers.
 	<<else>>
 		covers, paired with
@@ -420,7 +420,7 @@ $activeSlave.slaveName is
 
 <<case "a comfortable bodysuit">>
 	which covers $him to the neck while displaying the shape of
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		everything.
 	<<else>>
 		everything, and seamlessly transitions down into
@@ -431,7 +431,7 @@ $activeSlave.slaveName is
 	a sporty garment that hugs $his
 	<<if ($activeSlave.amp == 1)>>
 		limbless body closely and comfortably.
-	<<elseif ($activeSlave.missingLegs == 3)>>
+	<<elseif (!hasAnyLegs($activeSlave))>>
 		body closely and comfortably.
 	<<else>>
 		body closely and comfortably, and
@@ -442,7 +442,7 @@ $activeSlave.slaveName is
 	a one-piece swimsuit that stops halfway up $his
 	<<if ($activeSlave.amp == 1)>>
 		limbless torso.
-	<<elseif ($activeSlave.missingLegs == 3)>>
+	<<elseif (!hasAnyLegs($activeSlave))>>
 		torso.
 	<<else>>
 		torso, and
@@ -451,7 +451,7 @@ $activeSlave.slaveName is
 
 <<case "an apron">>
 	but is otherwise almost entirely
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		naked.
 	<<else>>
 		naked,
@@ -460,7 +460,7 @@ $activeSlave.slaveName is
 
 <<case "overalls">>
 	but little
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		else.
 	<<else>>
 		else,
@@ -471,7 +471,7 @@ $activeSlave.slaveName is
 	a form-fitting military bodysuit covering $his
 	<<if ($activeSlave.amp == 1)>>
 		face and limbless torso.
-	<<elseif ($activeSlave.missingLegs == 3)>>
+	<<elseif (!hasAnyLegs($activeSlave))>>
 		face and torso.
 	<<else>>
 		face and torso, and
@@ -482,7 +482,7 @@ $activeSlave.slaveName is
 	a form-fitting military armor covering $his
 	<<if ($activeSlave.amp == 1)>>
 		face and limbless torso.
-	<<elseif ($activeSlave.missingLegs == 3)>>
+	<<elseif (!hasAnyLegs($activeSlave))>>
 		face and torso.
 	<<else>>
 		face and torso, and
@@ -498,7 +498,7 @@ $activeSlave.slaveName is
 
 <<case "a slutty maid outfit">>
 	which includes a very short, dark dress, a white blouse,
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		and an apron.
 	<<else>>
 		an apron, and
@@ -507,7 +507,7 @@ $activeSlave.slaveName is
 
 <<case "a nice maid outfit">>
 	which includes a dark dress, a white blouse,
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		and an apron.
 	<<else>>
 		an apron, and
@@ -516,7 +516,7 @@ $activeSlave.slaveName is
 
 <<case "a slutty nurse outfit">>
 	which includes an immodest low cut white
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		jacket and a tight white miniskirt.
 	<<else>>
 		jacket, a tight white miniskirt, and
@@ -525,7 +525,7 @@ $activeSlave.slaveName is
 
 <<case "a nice nurse outfit">>
 	which includes a plain white scrub
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		top and trousers.
 	<<else>>
 		top, trousers, a stethoscope, and
@@ -534,7 +534,7 @@ $activeSlave.slaveName is
 
 <<case "a schoolgirl outfit">>
 	which includes a tight white
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		blouse and a short plaid skirt.
 	<<else>>
 		blouse, a short plaid skirt, and
@@ -543,7 +543,7 @@ $activeSlave.slaveName is
 
 <<case "a kimono">>
 	of the furisode
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pattern.
 	<<else>>
 		pattern, and
@@ -552,7 +552,7 @@ $activeSlave.slaveName is
 
 <<case "a dirndl">>
 	of a traditional
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pattern.
 	<<else>>
 		pattern, and
@@ -561,7 +561,7 @@ $activeSlave.slaveName is
 
 <<case "a long qipao">>
 	of a traditional
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pattern.
 	<<else>>
 		pattern, and
@@ -570,7 +570,7 @@ $activeSlave.slaveName is
 
 <<case "lederhosen">>
 	of a traditional
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pattern.
 	<<else>>
 		pattern, and
@@ -579,7 +579,7 @@ $activeSlave.slaveName is
 
 <<case "a biyelgee costume">>
 	of a traditional
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pattern.
 	<<else>>
 		pattern, and
@@ -588,7 +588,7 @@ $activeSlave.slaveName is
 
 <<case "a burkini">>
 	consisting of a polyester tunic and
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pants, which have been tailored for $his leglessness.
 	<<else>>
 		pants, and
@@ -599,7 +599,7 @@ $activeSlave.slaveName is
 	alongside a short-sleeved overshirt and a skirt that
 	<<if ($activeSlave.amp == 1)>>
 		dangles uselessly off $his limbless torso.
-	<<elseif ($activeSlave.missingLegs == 3)>>
+	<<elseif (!hasAnyLegs($activeSlave))>>
 		dangles uselessly off $his legless torso.
 	<<else>>
 		extends down to $his feet, and
@@ -608,7 +608,7 @@ $activeSlave.slaveName is
 
 <<case "a hijab and abaya" "a niqab and abaya">>
 	which modestly covers $his entire
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		body.
 	<<else>>
 		body, down to $his feet, which
@@ -617,7 +617,7 @@ $activeSlave.slaveName is
 
 <<case "a klan robe">>
 	which fully covers $his entire
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		body.
 	<<else>>
 		body, down to $his feet, which
@@ -626,7 +626,7 @@ $activeSlave.slaveName is
 
 <<case "a burqa">>
 	which restrictingly covers $his entire
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		body.
 	<<else>>
 		body, down to $his feet, which
@@ -635,7 +635,7 @@ $activeSlave.slaveName is
 
 <<case "a police uniform">>
 	of a traditional
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		styling.
 	<<else>>
 		styling, and
@@ -644,7 +644,7 @@ $activeSlave.slaveName is
 
 <<case "a hanbok">>
 	of a traditional
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pattern.
 	<<else>>
 		pattern, and
@@ -653,7 +653,7 @@ $activeSlave.slaveName is
 
 <<case "a gothic lolita dress">>
 	of a Victorian
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pattern.
 	<<else>>
 		pattern, and
@@ -662,7 +662,7 @@ $activeSlave.slaveName is
 
 <<case "a one-piece swimsuit">>
 	which modestly covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		body.
 	<<else>>
 		body, and
@@ -671,7 +671,7 @@ $activeSlave.slaveName is
 
 <<case "a nice pony outfit" "a slutty pony outfit">>
 	which restrictingly covers $his entire
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		body.
 	<<else>>
 		body, down to $his feet, with
@@ -680,7 +680,7 @@ $activeSlave.slaveName is
 
 <<case "a button-up shirt and panties" "a button-up shirt" "a sweater" "a t-shirt" "a tank-top" "a nice over-sizes shirt" "a tube top" "an oversized t-shirt">>
 	which only covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		torso.
 	<<else>>
 		torso, and
@@ -689,7 +689,7 @@ $activeSlave.slaveName is
 
 <<case "a bra" "a sports bra" "a striped bra" "pasties">>
 	which only covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		breasts.
 	<<else>>
 		breasts, and
@@ -698,7 +698,7 @@ $activeSlave.slaveName is
 
 <<case "a tube top and thong" "a sweater and panties" "a slutty klan robe" "a tank-top and panties" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "sport shorts and a t-shirt" "sport shorts and a sports bra" "a t-shirt and panties">>
 	which only covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		torso and crotch.
 	<<else>>
 		torso, crotch, and
@@ -707,7 +707,7 @@ $activeSlave.slaveName is
 
 <<case "striped underwear">>
 	which only covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		breasts and crotch.
 	<<else>>
 		breasts, crotch, and
@@ -716,7 +716,7 @@ $activeSlave.slaveName is
 
 <<case "a thong" "a skimpy loincloth" "boyshorts" "panties" "panties and pasties">>
 	which only covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		crotch.
 	<<else>>
 		crotch, and
@@ -725,7 +725,7 @@ $activeSlave.slaveName is
 
 <<case "cutoffs" "sport shorts">>
 	which only cover $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		crotch and ass.
 	<<else>>
 		crotch, ass, and
@@ -734,7 +734,7 @@ $activeSlave.slaveName is
 
 <<case "a sweater and cutoffs">>
 	which only covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		torso, crotch, and ass.
 	<<else>>
 		torso, crotch, ass, and
@@ -743,7 +743,7 @@ $activeSlave.slaveName is
 
 <<case "leather pants and a tube top" "a t-shirt and jeans">>
 	which only covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		torso and ass.
 	<<else>>
 		torso, ass, legs, and
@@ -752,7 +752,7 @@ $activeSlave.slaveName is
 
 <<case "leather pants and pasties" "leather pants" "jeans">>
 	which only covers $his
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		ass.
 	<<else>>
 		legs, ass, and
@@ -761,7 +761,7 @@ $activeSlave.slaveName is
 
 <<case "a military uniform">>
 	consisting of a shirt and tie, military
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		tunic, and matching skirt.
 	<<else>>
 		tunic, matching skirt, and
@@ -783,7 +783,7 @@ $activeSlave.slaveName is
 
 <<case "a schutzstaffel uniform">>
 	consisting of a shirt and tie, military
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		tunic, and matching trousers.
 	<<else>>
 		tunic, matching trousers, and
@@ -805,7 +805,7 @@ $activeSlave.slaveName is
 
 <<case "a slutty schutzstaffel uniform">>
 	consisting of a shirt and tie, military
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		tunic, and matching miniskirt.
 	<<else>>
 		tunic, matching miniskirt, and
@@ -827,7 +827,7 @@ $activeSlave.slaveName is
 
 <<case "a red army uniform">>
 	consisting of a shirt and tie, military
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		tunic, and matching skirt.
 	<<else>>
 		tunic, matching skirt, and
@@ -849,7 +849,7 @@ $activeSlave.slaveName is
 
 <<case "battledress">>
 	including comfortable fatigue
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		pants (pinned over $his stumps) and a sturdy tank top.
 	<<else>>
 		pants, a sturdy tank top and
@@ -858,7 +858,7 @@ $activeSlave.slaveName is
 
 <<case "a mounty outfit">>
 	including comfortable
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		slacks (pinned over $his stumps) and a sturdy tunic.
 	<<else>>
 		slacks, a sturdy tunic and
@@ -866,7 +866,7 @@ $activeSlave.slaveName is
 	<</if>>
 
 <<case "harem gauze">>
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 	/* no description yet */
 	<<else>>
 		$he is wearing
@@ -875,7 +875,7 @@ $activeSlave.slaveName is
 	$He's covered and even veiled, but you can see everything straight through the filmy cloth.
 
 <<case "slutty jewelry">>
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		including a belt of thin chain with a lewd ornament (a little
 		<<if ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
 			curved golden cock without balls)
@@ -900,7 +900,7 @@ $activeSlave.slaveName is
 
 <<case "a Santa dress">>
 	made of red felt with white fur
-	<<if ($activeSlave.missingLegs == 3)>>
+	<<if (!hasAnyLegs($activeSlave))>>
 		trim and a leather belt.
 	<<else>>
 		trim, a leather belt, and
diff --git a/src/utility/saRulesWidgets.tw b/src/utility/saRulesWidgets.tw
index 5351a2261e4..a7bff091119 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 <<if ($slaves[$i].missingArms != 3)>>$his fingers<<else>>a strap-on<</if>><</if>>. $slaves[_j].slaveName hates oral
+										rapes the poor slave's face<<if !canAchieveErection($slaves[$i])>> with <<if (hasAnyArms($slaves[$i]))>>$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 <<if ($slaves[$i].missingArms != 3)>>$his fingers<<else>>a strap-on<</if>><</if>>. $slaves[_j].slaveName hates penetration
+										rapes the poor slave's pussy<<if !canAchieveErection($slaves[$i])>> with <<if (hasAnyArms($slaves[$i]))>>$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 <<if ($slaves[$i].missingArms != 3)>>$his fingers<<else>>a strap-on<</if>><</if>>. $slaves[_j].slaveName hates anal
+										rapes the poor slave's ass<<if !canAchieveErection($slaves[$i])>> with <<if (hasAnyArms($slaves[$i]))>>$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">>
@@ -566,7 +566,7 @@ and
 						<<if $slaves[_j].assignmentVisible || $slaves[_j].assignment == $slaves[$i].assignment>>
 							<<if $slaves[_j].devotion <= 20>>
 								<<if $slaves[_j].trust < -20>>
-									$He repeatedly rapes a reluctant <<= SlaveFullName($slaves[_j])>>; $he can't seem to keep $his hand<<if ($slaves[$i].missingArms != 1 && $slaves[$i].missingArms != 2)>>s<</if>><<if ($slaves[$i].missingArms == 3)>> (so to speak)<</if>> off the poor slave, who can't avoid $him. Not surprisingly, $slaves[_j].slaveName resents this, and $slaves[$i].slaveName's ongoing sexual abuse @@.lightsalmon;starts a rivalry@@ between them.
+									$He repeatedly rapes a reluctant <<= SlaveFullName($slaves[_j])>>; $he can't seem to keep $his hand<<if (hasBothArms($slaves[$i]) || !hasAnyArms($slaves[$i]))>>s<</if>><<if (!hasAnyArms($slaves[$i]))>> (so to speak)<</if>> off the poor slave, who can't avoid $him. Not surprisingly, $slaves[_j].slaveName resents this, and $slaves[$i].slaveName's ongoing sexual abuse @@.lightsalmon;starts a rivalry@@ between them.
 									<<set $slaves[$i].rivalry = 1, $slaves[_j].rivalry = 1, $slaves[$i].rivalryTarget = $slaves[_j].ID, $slaves[_j].rivalryTarget = $slaves[$i].ID>>
 									<<break>>
 									<<run SimpleSexAct.Slave($slaves[_j], 4)>>
-- 
GitLab