diff --git a/devNotes/AnatomyOfAFreeCitiesEvent.txt b/devNotes/AnatomyOfAFreeCitiesEvent.txt
index 8346f7583bc290e48ef70e27718afb52fe005ade..d9ca7a005393e65c49638c14784b1959eabeab0b 100644
--- a/devNotes/AnatomyOfAFreeCitiesEvent.txt
+++ b/devNotes/AnatomyOfAFreeCitiesEvent.txt
@@ -84,7 +84,7 @@ Choices should also be hidden when they run against the game rules, like for exa
 	$dairyNameCaps is equipped to feed and clean slaves normally. [[Upgrade the milking machines with intubators|Dairy][$cash -= _Tmult1, $dairyFeedersUpgrade = 1]] //Costs ¤_Tmult1 and will increase upkeep costs//
 	<</if>>
 
-	In order to enable the industrial feeder option both any of the see extreme content options has be enabled and the restraint's have to be already set to industrial. 
+	In order to enable the industrial feeder option both any of the see extreme content options has be enabled and the restraint's have to be already set to industrial.
 
 Remember that "do nothing" is almost always a choice (it's called "Continue" and can be found on the left side of the screen) so your events don't need this as an extra choice.
 
diff --git a/devNotes/Deepmurk_Vector_Art_Changelog.txt b/devNotes/Deepmurk_Vector_Art_Changelog.txt
index 9bfe54930ba792c596915c4f2dc45be2a1f9c9fe..43835e3196ad90cffdd332d4e88a687360172ad5 100644
--- a/devNotes/Deepmurk_Vector_Art_Changelog.txt
+++ b/devNotes/Deepmurk_Vector_Art_Changelog.txt
@@ -36,7 +36,7 @@ known issues
 pending requests/suggestions
 -------------
 	-loli/shota bodies
-	
+
 pending outfit requests
 -------------
 	-opaque stockings with ribbons
@@ -49,9 +49,9 @@ planned additions
 	-rework all AI avatars
 	-dick piercings (stalled due to planned code change)
 	-more outfits, see current queue ( https://gitgud.io/deepmurk/fc-pregmod/issues/1 )
-	
+
 ---------------------------------------------------------------------------------------------------------------------------------------------
- 
+
 v1.7 (12/22/2018)
 -------------
 	-added muscle definition (heavy)
diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 2b89b55fe4576add6fbf5906199390659a645e0f..d97801e75c24180b6ec7b52c92588b3405d3f884 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2761,7 +2761,7 @@
 	229
 	-fixes
 	-QoL changes to unit management in secEx
-	Fixes include the swan song followup never happening, RA getting too controlling about fertility drugs and incorrectly displayed training costs.
+	Fixes include the swan song follow-up never happening, RA getting too controlling about fertility drugs and incorrectly displayed training costs.
 
 	228
 	-code improvements
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 9ce36331928f9a9257eea8d7ffc53de7039ec677..48e3f4b3c3dce16ce2a4e2a06510eec064cc28f7 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -17861,16 +17861,16 @@ window.rulesAssistantOptions = (function() {
 			this.appendChild(new NailsList());
 			this.appendChild(new HairLengthList());
 			this.appendChild(new HaircutsList());
-			this.appendChild(new HairColourList());
+			this.appendChild(new HairColorList());
 			this.appendChild(new HairStyleList());
 			this.appendChild(new EyebrowColorList());
 			this.appendChild(new EyebrowStyleList());
 			this.appendChild(new EyebrowFullnessList());
-			this.appendChild(new PubicHairColourList());
+			this.appendChild(new PubicHairColorList());
 			this.appendChild(new PubicHairStyleList());
-			this.appendChild(new ArmpitHairColourList());
+			this.appendChild(new ArmpitHairColorList());
 			this.appendChild(new ArmpitHairStyleList());
-			this.appendChild(new SkinColourList());
+			this.appendChild(new SkinColorList());
 		}
 	}
 
@@ -18985,9 +18985,9 @@ window.rulesAssistantOptions = (function() {
 		constructor() {
 			super(current_rule.set.eyeColor);
 			this.appendChild(new OptionsItem("No default Setting", () => this.setValue("no default setting")));
-			this.colourlist = new LensesColourList();
+			this.colorlist = new LensesColorList();
 			this.shapelist = new LensesShapeList();
-			this.appendChild(this.colourlist);
+			this.appendChild(this.colorlist);
 			this.appendChild(this.shapelist);
 		}
 
@@ -19002,8 +19002,8 @@ window.rulesAssistantOptions = (function() {
 
 		combine() {
 			const lst = [];
-			if (this.colourlist.value !== "no default setting")
-				lst.push(this.colourlist.value);
+			if (this.colorlist.value !== "no default setting")
+				lst.push(this.colorlist.value);
 			if (this.shapelist.value !== "no default setting")
 				lst.push(this.shapelist.value);
 			if (lst.length === 0) return "no default setting";
@@ -19017,7 +19017,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class LensesColourList extends Options {
+	class LensesColorList extends Options {
 		constructor() {
 			const items = [];
 			[
@@ -19151,7 +19151,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class HairColourList extends List {
+	class HairColorList extends List {
 		constructor() {
 			const pairs = [
 				["no default setting"],
@@ -19306,7 +19306,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class PubicHairColourList extends List {
+	class PubicHairColorList extends List {
 		constructor() {
 			const pairs = [
 				["no default setting"],
@@ -19366,7 +19366,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class ArmpitHairColourList extends List {
+	class ArmpitHairColorList extends List {
 		constructor() {
 			const pairs = [
 				["no default setting"],
@@ -20336,7 +20336,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class SkinColourList extends List {
+	class SkinColorList extends List {
 		constructor() {
 			const items = [
 				["no default setting"],
@@ -38513,8 +38513,8 @@ window.Beauty = (function() {
 
 window.FResult = (function() {
 	"use strict";
-	// we can't initialise our global variables on load, because SugarCube.State isn't initialised
-	// instead, declare them and initialise on run time
+	// we can't initialize our global variables on load, because SugarCube.State isn't initialized
+	// instead, declare them and initialize on run time
 	let V, result, incest_bonus;
 	function FResult(slave) {
 		V = State.variables;
diff --git a/player variables documentation - Pregmod.txt b/player variables documentation - Pregmod.txt
index ea047b2f143e90164caf95be12bed97b3d8b9924..cede3d845f6a8b13c5d6f350d55c393cd8021903 100644
--- a/player variables documentation - Pregmod.txt	
+++ b/player variables documentation - Pregmod.txt	
@@ -47,8 +47,8 @@ How far along the your pregnancy is (pregMood kicks in at 24+ weeks)
  0		not pregnant
  1 - 42 pregnant
  43+	giving birth
- 
-pregType: 
+
+pregType:
 
 How many fetuses you are carrying
 1 - 8
@@ -126,7 +126,7 @@ breast size
  1	- F-cup
  2	- G-cup
  3	- H-cup
- 
+
 degeneracy:
 
 How strong/are there rumors about you doing unsavory things with your slaves
diff --git a/slave variables documentation - Pregmod.txt b/slave variables documentation - Pregmod.txt
index 0f87ab4928e216490ead718ad3601977f1189b2a..2332d9b39547b3c76a0622fbfa6a73287eade1ac 100644
--- a/slave variables documentation - Pregmod.txt	
+++ b/slave variables documentation - Pregmod.txt	
@@ -1965,7 +1965,7 @@ scrotum:*
 scrotum size
 function relative to .ballSize
 
-*If .balls gt 0  and .scrotum is 0, balls are internal
+*If .balls gt 0 and .scrotum is 0, balls are internal
 
 ovaries:
 
diff --git a/src/SecExp/secBarracks.tw b/src/SecExp/secBarracks.tw
index 909102cca41c8171f003db4e7d04ec9dadfb4b33..87f2ef64af043995c4e3780f4144cf1aa07af997 100644
--- a/src/SecExp/secBarracks.tw
+++ b/src/SecExp/secBarracks.tw
@@ -191,7 +191,7 @@ You are free to organize your menial slaves into fighting units. Currently you h
 <<if $helots > 0 && $activeUnits < $maxUnits>>
 	<br>
 	<<link "Form a new unit" "secBarracks">>
-		<<set _name = "<<= ordinalSuffix($createdMercUnits+1)>> slave platoon">>
+		<<set _name = "<<= ordinalSuffix($createdSlavesUnits+1)>> slave platoon">>
 		<<if $helots >= $maxTroops>>
 			<<set _newUnit = {
 			ID: 0,
@@ -333,7 +333,7 @@ __Militia__
 	<<if $militiaFreeManpower > 0 && $activeUnits < $maxUnits>>
 		<br>
 		<<link "Form a new unit" "secBarracks">>
-			<<set _name = "<<= ordinalSuffix($createdMercUnits+1)>> citizens' platoon">>
+			<<set _name = "<<= ordinalSuffix($createdMilitiaUnits+1)>> citizens' platoon">>
 			<<if $militiaFreeManpower >= $maxTroops>>
 				<<set _newUnit = {
 				ID: 0,
diff --git a/src/SpecialForce/WeeklyChoices.tw b/src/SpecialForce/WeeklyChoices.tw
index b9427691779feb4076c7524b902e6d12da253cad..332580e55d9581027aa8c973227a9a944a85a3fa 100644
--- a/src/SpecialForce/WeeklyChoices.tw
+++ b/src/SpecialForce/WeeklyChoices.tw
@@ -99,7 +99,7 @@
 				<<elseif $PC.medicine >= 30>>
 					Your moderate surgical skill ensures that you can close the citizen's wound, though not without likely scarring.
 				<<elseif $PC.medicine >= 10>>
-					Your basic surgical skill in medicine is sufficient only to stabilize the citizen's wounds before medical assistnance arrives.
+					Your basic surgical skill in medicine is sufficient only to stabilize the citizen's wounds before medical assistance arrives.
 				<<else>>
 					Your total lack of surgical skill causes the death of the citizen through repeated medical blunders.
 					<<set $arcologies[0].prosperity -= .25>><</if>>
diff --git a/src/art/artJS.tw b/src/art/artJS.tw
index 7d9a6067b93dc58f260b28c40cbf5421b0b6756f..477bc075c646c69992238c4f61883b7b9a05ad9c 100644
--- a/src/art/artJS.tw
+++ b/src/art/artJS.tw
@@ -72,7 +72,7 @@ window.ArtControlRendered = function ArtControlRendered(slave, sizePlacement) {
 	return r;
 };
 
-/* 
+/*
 This takes a textual hair color description and tries to guess the appropriate HTML compliant color code.
 
 color should be a color name, but can also be a string describing hair color.
@@ -81,8 +81,8 @@ eyes can be nearly anything, it only indicates that the function is being used f
 This code's working is described to the user in the Encyclopedia, chapter "Lore", section "Dyes".
 */
 window.extractColor = function (color, eyes) {
-	/* 
-	these are color names known and used in FreeCities 
+	/*
+	these are color names known and used in FreeCities
 	attributed color names are at the front of the array
 	*/
 	var FCname2HTMLarray = [
@@ -100,12 +100,12 @@ window.extractColor = function (color, eyes) {
 		["copper", "#a16145"],
 		["dark blue", "#00008B"],
 		["dark brown", "#463325"],
-		["dark orchid", "#9932CC"],		
+		["dark orchid", "#9932CC"],
 		["deep red", "#6D1318"],
 		["ginger", "#da822d"],
 		["golden", "#ffdf31"],
 		["green", "#5FBA46"],
-		["green-yellow", "#ADFF2F"],		
+		["green-yellow", "#ADFF2F"],
 		["grey", "#9e9fa4"],
 		["hazel", "#8d6f1f"],
 		["light olive", "#d4c6bb"],
@@ -117,7 +117,7 @@ window.extractColor = function (color, eyes) {
 		["platinum blonde", "#fcf3c1"],
 		["purple", "#800080"],
 		["red", "#BB2027"],
-		["sea green", "#2E8B57"],		
+		["sea green", "#2E8B57"],
 		["silver", "#cdc9c6"],
 		["strawberry-blonde", "#e5a88c"],
 		/* these are not actually FreeCities canon, but like to appear in custom descriptions */
@@ -135,7 +135,7 @@ window.extractColor = function (color, eyes) {
 		if (HTMLstandardColors.includes(color) || color.match(/^#([0-9a-f]{3}){1,2}$/) !== null) {
 			colorCode = color; /* is a HTML color name or value, use it directly */
 		} else {
-			/* 
+			/*
 			is not even a HTML color name. color probably is a description.
 			look for anything resembling a valid color name within the description.
 			*/
diff --git a/src/art/artWidgets.tw b/src/art/artWidgets.tw
index d9abd722cd9c15c6095667356f54ff1f1d01768f..c450a5dd1f19409359436c026d1195d6606024cf 100644
--- a/src/art/artWidgets.tw
+++ b/src/art/artWidgets.tw
@@ -38,14 +38,14 @@ $args[2]: icon UI Display for vector art, 1 for on.
 <<silently>>
 /* prepare HTML color codes for slave display */
 /* note: latex clothing is mostly emulated by rubber color for skin (and shoes) */
-/* TODO: consistently use american "color" instead of "colour" for all identifiers */
-<<include Art_Vector_Set_Colour_Outfit_>> 
-<<include Art_Vector_Set_Colour_Skin_>> 
+/* TODO: consistently use American "color" instead of "colour" for all identifiers */
+<<include Art_Vector_Set_Colour_Outfit_>>
+<<include Art_Vector_Set_Colour_Skin_>>
 <<include Art_Vector_Set_Colour_Hair_>>
 <<include Art_Vector_Set_Colour_Shoe_>>
 <</silently>>
 <<include Art_Vector_Generate_Stylesheet_>>
-/* 
+/*
 each passage adds one layer of vector art
 vector art added later is drawn over previously added art
 (what is listed on the bottom in the code appears on the top of the image)
@@ -96,7 +96,7 @@ vector art added later is drawn over previously added art
 <<if $args[0].customHairVector>>
 	<<set _hairStyle = $args[0].customHairVector>>
 <<else>>
-	<<set _hairStyle = ["neat", "up", "ponytail", "tails", "bun", "luxurious", "messy", "eary", "dreadlocks", "braided", "afro", "strip", "trimmed", "buzzcut"].includes($args[0].hStyle) ? $args[0].hStyle : "neat">>
+	<<set _hairStyle = ["afro", "braided", "bun", "buzzcut", "dreadlocks", "eary", "luxurious", "messy", "neat", "ponytail", "strip", "tails", "trimmed", "up"].includes($args[0].hStyle) ? $args[0].hStyle : "neat">>
 <</if>>
 <<set _underArmHStyle = $args[0].underArmHStyle>>
 
@@ -515,7 +515,7 @@ vector art added later is drawn over previously added art
 <</if>>
 
 <<elseif $imageChoice == 3>> /* VECTOR ART REVAMP*/
-	<<include Art_Vector_Revamped_Control_>> 
+	<<include Art_Vector_Revamped_Control_>>
 <<else>> /* RENDERED IMAGES BY SHOKUSHU */
 
 	<<= ArtControlRendered($args[0], $args[1])>>
diff --git a/src/art/assistantArt.tw b/src/art/assistantArt.tw
index c965f727bc201d383b76091e2b276b0e2fd95c38..dd39d8be45c196c86e189c736d2240566b835199 100644
--- a/src/art/assistantArt.tw
+++ b/src/art/assistantArt.tw
@@ -30,7 +30,7 @@ window.assistantArt = function assistantArt(sizePlacement) {
 			case "goddess":
 				fileName = "'data:image/png;base64,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'";
 				break;
-            case "hypergoddess":
+			case "hypergoddess":
 				fileName = "'data:image/png;base64,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'";
 				break;
 			case "schoolgirl":
@@ -117,7 +117,7 @@ window.assistantArt = function assistantArt(sizePlacement) {
 				default:
 					fileName += "default.png'";
 			}
-        }
+		}
 
 		if (sizePlacement === 3) {
 			fileName = `<img src=${fileName} style='float:right; border:3px hidden'/>`;
diff --git a/src/art/vector/Arm.tw b/src/art/vector/Arm.tw
index e83f5036476e122565f7ec9167a2c8084877ff8a..442f7f39d085d79b01253b72b462309c0b67e534 100644
--- a/src/art/vector/Arm.tw
+++ b/src/art/vector/Arm.tw
@@ -100,7 +100,7 @@
 <</if>>
 
 <<if _artSlave.amp == -3 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>>
-/* Reverting beauty limbs to regular SVG */ 
+/* Reverting beauty limbs to regular SVG */
 	<<set _art = "Art_Vector_Arm_Right_ProstheticBeauty_"+_rightArmType >>
 	<<include _art>>
 	<<set _art = "Art_Vector_Arm_Left_ProstheticBeauty_"+_leftArmType >>
@@ -147,13 +147,13 @@
 	<<set _leftArmArt = "Art_Vector_Arm_Outfit_" + clothing2artSuffix(_artSlave.clothes) + "_Left_" + _leftArmType>>
 	<<include _rightArmArt>>
 	<<include _leftArmArt>>
-	
+
 <<case "a slutty schutzstaffel uniform">>
 	<<set _rightArmArt = "Art_Vector_Arm_Outfit_SchutzstaffelUniform_Right_" + _rightArmType>>
 	<<set _leftArmArt = "Art_Vector_Arm_Outfit_SchutzstaffelUniform_Left_" + _leftArmType>>
 	<<include _rightArmArt>>
 	<<include _leftArmArt>>
-	
+
 <<case "a niqab and abaya" "a burqa">>
 	<<set _rightArmArt = "Art_Vector_Arm_Outfit_HijabAndAbaya_Right_" + _rightArmType>>
 	<<set _leftArmArt = "Art_Vector_Arm_Outfit_HijabAndAbaya_Left_" + _leftArmType>>
diff --git a/src/art/vector/Balls.tw b/src/art/vector/Balls.tw
index a89c85acad473bbb913743525634a303b598a507..7bfcd67a363b07ed1d7b3d78d6117842315a9b64 100644
--- a/src/art/vector/Balls.tw
+++ b/src/art/vector/Balls.tw
@@ -1,15 +1,15 @@
 :: Art_Vector_Balls_ [nobr]
 
 <<if _artSlave.scrotum > 0 && _artSlave.balls > 0 && !(["a slave gown","a cheerleader outfit","cutoffs and a t-shirt","a halter top dress","a hijab and abaya","a niqab and abaya", "a burqa", "a leotard","a nice maid outfit","a slutty maid outfit","a military uniform","a mini dress","a nice nurse outfit","a slutty nurse outfit","a scalemail bikini","a schoolgirl outfit","a ball gown","battledress","a slutty outfit","spats and a tank top","a succubus outfit","nice business attire","slutty business attire","attractive lingerie for a pregnant woman","a bunny outfit","a chattel habit","conservative clothing","harem gauze","a huipil","a kimono","a maternity dress","a slutty qipao","stretch pants and a crop-top","a toga","a penitent nuns habit","a schutzstaffel uniform","a slutty schutzstaffel uniform","a red army uniform","an apron","battlearmor","a dirndl","a biyelgee costume","lederhosen","a mounty outfit", "striped panties", "a long qipao", "a klan robe", "a hijab and blouse", "a burkini", "cutoffs", "a slutty klan robe", "a button-up shirt and panties", "striped underwear", "panties", "a t-shirt and panties", "a t-shirt and thong", "sport shorts", "sport shorts and a t-shirt", "sport shorts and a sports bra", "leather pants", "jeans", "leather pants and pasties", "leather pants and a tube top", "boy shorts", "a tube top and thong", "a skimpy loincloth", "a tank-top and panties", "a t-shirt and jeans", "boyshorts", "an oversized t-shirt and boyshorts", "a sweater and cutoffs", "a sweater and panties", "a police uniform", "a one-piece swimsuit", "a gothic lolita dress", "kitty lingerie"].includes(_artSlave.clothes)) >>
-  <<set _art_scale_factor = _artSlave.scrotum/3 >>
-  <<set _art_translation_x = -271*(_art_scale_factor-1) >>
-  <<set _art_translation_y = -453*(_art_scale_factor-1) >>
-/*
-_art_balls_transform is for internal program usage.
-_art_transform will affect the display.
-*/
-<<set _art_balls_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">>
-<<set _art_transform = _art_balls_transform>>
-  <<set _art = "Art_Vector_Balls">>
-  <<include _art>>
+	<<set _art_scale_factor = _artSlave.scrotum/3 >>
+	<<set _art_translation_x = -271*(_art_scale_factor-1) >>
+	<<set _art_translation_y = -453*(_art_scale_factor-1) >>
+	/*
+	_art_balls_transform is for internal program usage.
+	_art_transform will affect the display.
+	*/
+	<<set _art_balls_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">>
+	<<set _art_transform = _art_balls_transform>>
+	<<set _art = "Art_Vector_Balls">>
+	<<include _art>>
 <</if>>
diff --git a/src/art/vector/Body_Clothing_Control.tw b/src/art/vector/Body_Clothing_Control.tw
index 362a797926d571f46c1050824c7023fc91f178ca..d01188ea54bbfcc2979d2df49b306b611ca7990a 100644
--- a/src/art/vector/Body_Clothing_Control.tw
+++ b/src/art/vector/Body_Clothing_Control.tw
@@ -5,7 +5,7 @@
 <<if _artSlave.eyeColor != "">>
 	<<if _artSlave.eyeColor.split(" ").length > 1>>
 		<<set _eyeLens = _artSlave.eyeColor.split(" ")[0]>>
-		
+
 		<<if _eyeLens == "demonic">>
 			<<set _eyeBallColor = _eyeColor>>
 		<<elseif _eyeLens == "devilish">>
diff --git a/src/art/vector/Boob.tw b/src/art/vector/Boob.tw
index c44a02e4e84e5cdb6f330e609b7c9e751de08121..248f098558a22c809a424dc38f47a4b50b5382c0 100644
--- a/src/art/vector/Boob.tw
+++ b/src/art/vector/Boob.tw
@@ -5,7 +5,7 @@
 
 /* BEWARE: _art_boob_transform is also read by Art_Vector_Boob_Addons_ */
 
-/* 
+/*
 Prepare SVG transform matrix for continuous boob scaling.
 This transform affects boobs, areolae and piercings.
 The parameters were fit by points (300,1.0) and (15000,2.5).
@@ -29,7 +29,7 @@ _art_transform will affect the display.
 <<set _art_boob_transform = "matrix(" + _art_scale_factor +",0,0," + _art_scale_factor + "," + _art_translation_x + "," + _art_translation_y + ")">>
 <<set _art_transform = _art_boob_transform>>
 
-<<if _artSlave.boobs < 300 >> 
+<<if _artSlave.boobs < 300 >>
 	/* BEWARE: this threshold may be used in other art-related code, too */
 	/* boobs too small - draw areolae directly onto torso */
 <<else>>
diff --git a/src/art/vector/Boob_Addons.tw b/src/art/vector/Boob_Addons.tw
index fe103c3c37c0cac57be0bdbe6f01cfec1e80cb83..feaf1a12246687902bbc6687be62894b421ca091 100644
--- a/src/art/vector/Boob_Addons.tw
+++ b/src/art/vector/Boob_Addons.tw
@@ -15,9 +15,9 @@
 	<<case "a slutty schutzstaffel uniform" >>
 		<<set _clothes = "a schutzstaffel uniform">> /* slutty schutzstaffel uniform uses schutzstaffel uniform art */
 	<<case "a niqab and abaya" "a burqa">>
-		<<set _clothes = "a hijab and abaya" >> 
+		<<set _clothes = "a hijab and abaya" >>
 	<<case "a hijab and blouse">>
-		<<set _clothes = "a hijab and blouse" >> 
+		<<set _clothes = "a hijab and blouse" >>
 	<</switch>>
 	<<switch _clothes >> /* select available clothes */
 	<<case "a ball gown" "a bunny outfit" "a cheerleader outfit" "a halter top dress" "a hijab and abaya" "a huipil" "a kimono" "a leotard" "a maternity dress" "a military uniform" "a mini dress" "a monokini" "an apron" "a nice maid outfit" "a nice nurse outfit" "a penitent nuns habit" "a red army uniform" "a scalemail bikini" "a schoolgirl outfit" "a schutzstaffel uniform" "a slave gown" "a slutty maid outfit" "a slutty nurse outfit" "a slutty outfit" "a slutty qipao" "a slutty schutzstaffel uniform" "a string bikini" "a toga" "attractive lingerie" "attractive lingerie for a pregnant woman" "battledress" "chains" "clubslut netting" "conservative clothing" "cutoffs and a t-shirt" "harem gauze" "nice business attire" "shibari ropes" "slutty business attire" "slutty jewelry" "spats and a tank top" "stretch pants and a crop-top" "uncomfortable straps" "Western clothing" "a long qipao" "battlearmor" "a biyelgee costume" "lederhosen" "a dirndl" "a mounty outfit" "a klan robe" "a hijab and blouse" "panties and pasties" "a burkini" "a bra" "a slutty klan robe" "a striped bra" "striped underwear" "a button-up shirt" "a button-up shirt and panties" "a sports bra" "sport shorts and a t-shirt" "sport shorts and a sports bra" "a t-shirt" "a t-shirt and thong" "a t-shirt and panties" "leather pants and a tube top" "leather pants and pasties" "a tube top" "a tube top and thong" "a tank-top" "a tank-top and panties" "a t-shirt and jeans" "an oversized t-shirt" "an oversized t-shirt and boyshorts" "a sweater" "a sweater and cutoffs" "a sweater and panties" "a one-piece swimsuit" "a police uniform" "a hanbok" "a gothic lolita dress" "kitty lingerie">>
diff --git a/src/art/vector/Head.tw b/src/art/vector/Head.tw
index 77ecb89007ca40967ded72bce5b597006abb7502..6205a6d49446e52ba0ca465e3d64fa4d3b6a90d3 100644
--- a/src/art/vector/Head.tw
+++ b/src/art/vector/Head.tw
@@ -978,7 +978,7 @@
 					<<include Art_Vector_Eyebrow_TypeE_Bushy>>
 				<</if>>
 			<</if>>
-		<</if>>			
+		<</if>>
 		<<if _artSlave.race == "indo-aryan">>
 			<<if _artSlave.faceShape == "normal">>
 				<<include Art_Vector_Eyes_TypeE>>
diff --git a/src/art/vector/Leg.tw b/src/art/vector/Leg.tw
index badc81bc7b704a059ef43c3bb3f53ff732240efa..13e62b92494bc610fb68846d6d3cede673151dbb 100644
--- a/src/art/vector/Leg.tw
+++ b/src/art/vector/Leg.tw
@@ -16,7 +16,7 @@
 	<<elseif _artSlave.weight > 0 && _artSlave.weight < 161>>
 		<<set _legSize = "Normal">>
 	<<elseif _artSlave.weight >= 161>>
-		<<set _legSize = "Wide">>		
+		<<set _legSize = "Wide">>
 	<</if>>
 <<elseif _artSlave.hips == -1>>
 	<<if _artSlave.weight <= -11>>
@@ -96,8 +96,8 @@
 		<</if>>
 	<</if>>
 <</if>>
-	
-	
+
+
 /* Selection of matching SVG based on amputee level */
 
 <<if _artSlave.amp == -1 && (_artSlave.PLimb == 1 || _artSlave.PLimb == 2)>>
diff --git a/src/art/vector/Penis.tw b/src/art/vector/Penis.tw
index 4578fcb61e3509527bfff2223efbb7cf6f915fda..e40d6193128600b87b458c9aa9312a5f019ca750 100644
--- a/src/art/vector/Penis.tw
+++ b/src/art/vector/Penis.tw
@@ -102,6 +102,6 @@
 		<</if>>
 	<</if>>
 <</if>>
- 
+
 /* unset the variable for the next display */
 <<unset _art_have_boobs >>
diff --git a/src/art/vector/Pubic_Hair.tw b/src/art/vector/Pubic_Hair.tw
index a0861da1d30e25bff768911edb1475942c0c8916..b51accee90f740e929794692b3d458174f2116bb 100644
--- a/src/art/vector/Pubic_Hair.tw
+++ b/src/art/vector/Pubic_Hair.tw
@@ -54,7 +54,7 @@
 			<<include Art_Vector_Pubic_Hair_Very_Bushy >>
 		<</if>>
 	<<elseif _artSlave.pubicHStyle =="waxed">>
-		<<include Art_Vector_Pubic_Hair_None >>					
+		<<include Art_Vector_Pubic_Hair_None >>
 	<</if>>
 <</if>>
 
diff --git a/src/art/vector/Set_Colour_Hair.tw b/src/art/vector/Set_Colour_Hair.tw
index cfa905f705191f0e1c7c21f8f59a666b3a6a7b32..3e7470c2836db883493a87b5cb8d3aa53d03a506 100644
--- a/src/art/vector/Set_Colour_Hair.tw
+++ b/src/art/vector/Set_Colour_Hair.tw
@@ -1,9 +1,9 @@
 :: Art_Vector_Set_Colour_Hair_ [nobr]
 
-/* 
+/*
 "Free-Cities Dyes (taken from Cosmetic Rules Assistant Settings)"-
 to-"HTML Color"-Map
-courtesy of Nov-X 
+courtesy of Nov-X
 */
 
 <<set _hairColour = extractColor(_artSlave.hColor) >>
diff --git a/src/art/vector/Set_Colour_Outfit_JS.tw b/src/art/vector/Set_Colour_Outfit_JS.tw
index 80b88e64fbaa39a123f1602b74b80a58e2ffb8d2..26bf686a47ed7ceb0c820691de70291903fe5b92 100644
--- a/src/art/vector/Set_Colour_Outfit_JS.tw
+++ b/src/art/vector/Set_Colour_Outfit_JS.tw
@@ -25,7 +25,7 @@ if (artSlave.fuckdoll != 0 || artSlave.clothes == "a comfortable bodysuit") {
 /* head addons */
 switch (artSlave.eyewear) {
 	case "corrective glasses":
-	case "glasses": 
+	case "glasses":
 	case "blurring glasses":
 		s.glassesColor = "#010101";
 		break;
diff --git a/src/art/vector/Set_Colour_Shoe.tw b/src/art/vector/Set_Colour_Shoe.tw
index 99c13c8c1249d83d822cfc9c98b4e8774c60a939..49d4ae6062f1b635a97ecb420a6d3ff715259cd5 100644
--- a/src/art/vector/Set_Colour_Shoe.tw
+++ b/src/art/vector/Set_Colour_Shoe.tw
@@ -8,7 +8,7 @@
 <<set _shoeShadowColour = "#616a6b">>
 
 <<switch _artSlave.shoes>>
-<<case "heels" "extreme heels">>
+<<case "extreme heels" "heels">>
 	<<set _shoeColour = "#80808080">>
 <<case "boots">>
 	<<set _shoeColour = "#80808080">>
diff --git a/src/art/vector/Set_Colour_Skin_JS.tw b/src/art/vector/Set_Colour_Skin_JS.tw
index 763d5ce837e1c7888f7f12e25968749357300890..72573c4b6bcfb809713f3df196ed6aac05e932c7 100644
--- a/src/art/vector/Set_Colour_Skin_JS.tw
+++ b/src/art/vector/Set_Colour_Skin_JS.tw
@@ -25,7 +25,7 @@ var s = {
 	s.labiaStyle = colorSlave.labiaColor;
 	s.skinColour = colorSlave.skinColor;
 
-/* BEGIN SKIN COLOUR OVERRIDES FOR LATEX CLOTHING EMULATION */
+/* BEGIN SKIN COLOR OVERRIDES FOR LATEX CLOTHING EMULATION */
 
 if (artSlave.fuckdoll != 0) {
 	/* slave is a fuckdoll - display all skin as if it was black rubber */
diff --git a/src/art/vector_revamp/vectorRevampedArtControlJS.tw b/src/art/vector_revamp/vectorRevampedArtControlJS.tw
index 7eaee403ad845915f833a42ff20c05faaef0ae80..72a9e372980636fd4ed8a23f6e4c20ac3a9817aa 100644
--- a/src/art/vector_revamp/vectorRevampedArtControlJS.tw
+++ b/src/art/vector_revamp/vectorRevampedArtControlJS.tw
@@ -388,7 +388,7 @@ class ClothingControl {
 		}
 	}
 
-	get niceMaid() {		
+	get niceMaid() {
 		return {
 			bodySettings: {
 				showPubic: false,
@@ -407,7 +407,7 @@ class ClothingControl {
 		}
 	}
 
-	get sluttyMaid() {		
+	get sluttyMaid() {
 		return {
 			bodySettings: {
 				showBellyPiercings: false
@@ -419,9 +419,9 @@ class ClothingControl {
 		}
 	}
 
-	get restrictiveLatex() {	
+	get restrictiveLatex() {
 		var defaultOutfitColor = "#515351";
-		var areolaColor = "#383838";	
+		var areolaColor = "#383838";
 		return {
 			bodySettings: {
 				showEyes: false,
@@ -523,7 +523,7 @@ class ClothingControl {
 				legsSkin: {fill: defaultOutfitColor },
 				feetSkin: {fill: defaultOutfitColor },
 				torso: {fill: defaultOutfitColor },
-				buttSkin: {fill: defaultOutfitColor },				
+				buttSkin: {fill: defaultOutfitColor },
 				boob: { fill: defaultOutfitColor },
 				areola: { fill: defaultOutfitColor },
 				bellySkin: { fill: defaultOutfitColor },
@@ -545,7 +545,7 @@ class ClothingControl {
 				showPussyPiercings: false,
 				showPenisPiercings: false,
 				showBellyPiercings: false,
-				showNipplesPiercings: false,				
+				showNipplesPiercings: false,
 				showNipples: false
 			},
 			styleSettings: {
@@ -638,7 +638,7 @@ class RevampedArtControl {
 
 	copyProperties(objTo, objFrom) {
 		for (var attr in objFrom) {
-			if (objFrom.hasOwnProperty(attr)) 
+			if (objFrom.hasOwnProperty(attr))
 				objTo[attr] = objFrom[attr];
 		}
 	}
@@ -649,7 +649,7 @@ class RevampedArtControl {
 
 	applyClothingStyleSettings(styleSettings) {
 		for (var attr in styleSettings) {
-			if (styleSettings.hasOwnProperty(attr)) 
+			if (styleSettings.hasOwnProperty(attr))
 				this.copyProperties(this.styleControl[attr], styleSettings[attr]);
 		}
 	}
@@ -724,7 +724,7 @@ class RevampedArtControl {
 		else if (this.artSlave.trust >= -20) {
 			if (this.artSlave.devotion <= 20) {
 				leftArmType = "Low";
-			}			
+			}
 			else
 			{
 				leftArmType = "Mid";
@@ -746,7 +746,7 @@ class RevampedArtControl {
 		else if (this.artSlave.trust >= -20) {
 			if (this.artSlave.devotion <= 20) {
 				rightArmType = "Low";
-			}			
+			}
 			else
 			{
 				rightArmType = "High";
@@ -833,7 +833,7 @@ class RevampedArtControl {
 			case "dreadlocks":
 				result.push("Art_Vector_Revamp_Hair_Back_Dreadlocks_" + this.hairLength);
 				break;
-			default:		
+			default:
 				result.push("Art_Vector_Revamp_Hair_Back_Messy_" + this.hairLength);
 		}
 
@@ -845,7 +845,7 @@ class RevampedArtControl {
 
 		var leftArmType = "";
 		var rightArmType = "";
-				
+
 		if (this.artSlave.amp == 1) {
 			result.push("Art_Vector_Revamp_Arm_Stump");
 		}
@@ -883,7 +883,7 @@ class RevampedArtControl {
 			buttSize = 2;
 		else if (this.artSlave.butt > 2)
 			buttSize = 1;
-		else 
+		else
 			buttSize = 0;
 
 		result.push("Art_Vector_Revamp_Butt_" + buttSize);
@@ -1000,7 +1000,7 @@ class RevampedArtControl {
 		{
 			this.pubicTattooText = this.artSlave.dick != 0 ? "Useless" : "Fucktoy";
 			result.push("Art_Vector_Revamp_Pussy_Tattoo");
-		}	
+		}
 		switch(this.artSlave.pubicHStyle)
 		{
 			case "strip":
@@ -1095,7 +1095,7 @@ class RevampedArtControl {
 
 		var ballsSize = 0;
 
-		if (this.artSlave.scrotum >= 6) 
+		if (this.artSlave.scrotum >= 6)
 			ballsSize = 4;
 		else if (this.artSlave.scrotum >= 4)
 			ballsSize = 3;
@@ -1103,7 +1103,7 @@ class RevampedArtControl {
 			ballsSize = 2;
 		else if (this.artSlave.scrotum >= 2)
 			ballsSize = 1;
-		else 
+		else
 			ballsSize = 0;
 
 		result.push("Art_Vector_Revamp_Balls_" + ballsSize);
@@ -1180,9 +1180,9 @@ class RevampedArtControl {
 			if (this.artSlave.dickPiercing == 1)
 				result.push("Art_Vector_Revamp_Penis_" + penisSize + "_Piercing");
 			else if (this.artSlave.dickPiercing == 2)
-				result.push("Art_Vector_Revamp_Penis_" + penisSize + "_Piercing_Heavy");	
+				result.push("Art_Vector_Revamp_Penis_" + penisSize + "_Piercing_Heavy");
 		}
-		else 
+		else
 		{
 			result.push("Art_Vector_Revamp_Flaccid_" + penisSize);
 
@@ -1229,7 +1229,7 @@ class RevampedArtControl {
 			}
 
 		}
-		else 
+		else
 		{
 			var artScaleFactor = 0.804354*Math.log(0.00577801*this.artSlave.boobs);
 
@@ -1314,7 +1314,7 @@ class RevampedArtControl {
 		if (this.showNipplesPiercings)
 		{
 			var size = "Small";
-			
+
 			if (this.artSlave.boobs < 600)
 			{
 				size = "Small";
@@ -1331,7 +1331,7 @@ class RevampedArtControl {
 			{
 				if (this.artSlave.boobs < 300)
 					result.push("Art_Vector_Revamp_Boob_None_Piercing");
-				else 
+				else
 					result.push("Art_Vector_Revamp_Boob_" + size + "_Piercing");
 			}
 			else if (this.artSlave.nipplesPiercing == 2)
@@ -1346,7 +1346,7 @@ class RevampedArtControl {
 			{
 				if (this.artSlave.boobs < 300)
 					result.push("Art_Vector_Revamp_Boob_None_Areola_Piercing");
-				else 
+				else
 					result.push("Art_Vector_Revamp_Boob_" + size + "_Areola_Piercing");
 			}
 			else if (this.artSlave.areolaePiercing == 2)
@@ -1428,7 +1428,7 @@ class RevampedArtControl {
 				break;
 			case "neck corset":
 				result.push("Art_Vector_Revamp_Collar_Neck_Corset");
-				break;	
+				break;
 			case "pretty jewelry":
 				result.push("Art_Vector_Revamp_Collar_Pretty_Jewelry");
 				break;
@@ -1446,10 +1446,10 @@ class RevampedArtControl {
 				break;
 			case "stylish leather":
 				result.push("Art_Vector_Revamp_Collar_Stylish_Leather");
-				break;	
+				break;
 			case "tight steel":
 				result.push("Art_Vector_Revamp_Collar_Tight_Steel");
-				break;	
+				break;
 			default:
 		}
 
@@ -1524,7 +1524,7 @@ class RevampedArtControl {
 					result.push("Art_Vector_Revamp_Head_Eyebrow_Closed_Piercing_Heavy");
 			}
 		}
-		else 
+		else
 		{
 			result.push("Art_Vector_Revamp_Eyes_Angry");
 			result.push("Art_Vector_Revamp_Eyes_Angry_Highlights");
@@ -1573,7 +1573,7 @@ class RevampedArtControl {
 					result.push("Art_Vector_Revamp_Head_Mouth_Happy_Piercing_Heavy");
 			}
 		}
-		else 
+		else
 		{
 			result.push("Art_Vector_Revamp_Makeup_Mouth_Angry_" + lipsSize);
 			result.push("Art_Vector_Revamp_Mouth_Angry_" + lipsSize);
@@ -1667,7 +1667,7 @@ class RevampedArtControl {
 			case "dreadlocks":
 				result.push("Art_Vector_Revamp_Hair_Fore_Dreadlocks");
 				break;
-			default:		
+			default:
 				result.push("Art_Vector_Revamp_Hair_Fore_Messy");
 		}
 
@@ -1694,14 +1694,14 @@ class RevampedArtControl {
 		Array.prototype.push.apply(layers, this.chastityBeltLayer);
 		Array.prototype.push.apply(layers, this.torsoOutfitLayer);
 		Array.prototype.push.apply(layers, this.ballsLayer);
-		Array.prototype.push.apply(layers, this.bellyLayer);		
+		Array.prototype.push.apply(layers, this.bellyLayer);
 		Array.prototype.push.apply(layers, this.penisLayer);
 		Array.prototype.push.apply(layers, this.boobLayer);
 		Array.prototype.push.apply(layers, this.boobAddonLayer);
 		Array.prototype.push.apply(layers, this.collarLayer);
 		Array.prototype.push.apply(layers, this.headLayer);
 		Array.prototype.push.apply(layers, this.eyesLayer);
-		Array.prototype.push.apply(layers, this.mouthLayer);		
+		Array.prototype.push.apply(layers, this.mouthLayer);
 		Array.prototype.push.apply(layers, this.headAddonLayer);
 		Array.prototype.push.apply(layers, this.hairForeLayer);
 
diff --git a/src/cheats/PCCheatMenu.tw b/src/cheats/PCCheatMenu.tw
index de1c4e92e3218014a5cde9db16a449931a768ff6..0693f9c91473b1c67d88564d22fc3b78dbd1945b 100644
--- a/src/cheats/PCCheatMenu.tw
+++ b/src/cheats/PCCheatMenu.tw
@@ -34,7 +34,7 @@ Title: ''<<if $tempSlave.title == 0>>Master<<else>>Mistress<</if>>''
 	<<radiobutton "$tempSlave.rumor" "luck">> Luck
 
 <br>Preferred refreshment: <<textbox "$tempSlave.refreshment" $tempSlave.refreshment>>
-<br><<radiobutton "$tempSlave.refreshment" "cigar">> Cigar 
+<br><<radiobutton "$tempSlave.refreshment" "cigar">> Cigar
 	<<radiobutton "$tempSlave.refreshment" "whiskey">> Whiskey
 
 <br>Preferred method of consumption: <<if $tempSlave.refreshmentType == 0>>Smoked<<elseif $tempSlave.refreshmentType == 1>>Drank<<elseif $tempSlave.refreshmentType == 2>>Eaten<<elseif $tempSlave.refreshmentType == 3>>Snorted<<elseif $tempSlave.refreshmentType == 4>>Injected<<elseif $tempSlave.refreshmentType == 5>>Popped<<else>>Orally Dissolved<</if>>
diff --git a/src/cheats/mod_EditArcologyCheat.tw b/src/cheats/mod_EditArcologyCheat.tw
index f109b003da949e284110d9a61cd6fde14f320e39..87adbc6edbdd5ce67c178bd66f367fad5b17f1a0 100644
--- a/src/cheats/mod_EditArcologyCheat.tw
+++ b/src/cheats/mod_EditArcologyCheat.tw
@@ -25,7 +25,7 @@
 	''this is the last dance.'' //Very Hard//
 	<br>[[Easier|MOD_Edit Arcology Cheat][$economy = 80]]
 <</if>>
-<br>The economy is forecasted to 
+<br>The economy is forecasted to
 <<if $difficultySwitch == 0>>
 	''remain fairly stable.''
 <<elseif $econRate == 1>>
diff --git a/src/events/intro/economyIntro.tw b/src/events/intro/economyIntro.tw
index 52c22423a74034fb22a2cde4ce4822ee03a76913..4b72811290c40a436fc445022216374ddfdbe868 100644
--- a/src/events/intro/economyIntro.tw
+++ b/src/events/intro/economyIntro.tw
@@ -49,7 +49,7 @@
 	<</if>>
 	<br>
 	<br>[[Play with static economy|Economy Intro][$difficultySwitch = 0]]
-	 */
+	*/
 
 	<br>
 	<br>[[Next|Trade Intro]]
diff --git a/src/gui/svgFilters.tw b/src/gui/svgFilters.tw
index 5cdb22c7c4cdeeca8d852765f022725f05ecae8a..c6700a29224dfa3783dc0cbae9cd2f124a9355e4 100644
--- a/src/gui/svgFilters.tw
+++ b/src/gui/svgFilters.tw
@@ -50,7 +50,7 @@
 	<filter id="skin-dyed-blue" color-interpolation-filters="sRGB">
 		<feColorMatrix type="matrix" values="0.3 0 0 0 0 0 0.5 0 0 0 0.4 0.2 0.25 0 0.1 0 0 0 1 0"/>
 	</filter>
-	
+
 	<filter id="hair-ashen" color-interpolation-filters="sRGB">
 		<feColorMatrix type="matrix" values="0.7 0 0 0 0.1 0 0.7 0 0 0.1 0 0 0.7 0 0.1 0 0 0 1 0"/>
 	</filter>
diff --git a/src/interaction/cyberConfig.tw b/src/interaction/cyberConfig.tw
index 54de4363e56a677f3d86cbb3d60583c72829d52e..8c29f972c64d7a05b45f482e29c7acc5cfd26fc1 100644
--- a/src/interaction/cyberConfig.tw
+++ b/src/interaction/cyberConfig.tw
@@ -126,7 +126,7 @@
 			<<if $activeSlave.PLimb == 2>>
 				<<if $stockpile.cyberneticPLimb > 0>>[[Attach cybernetic limbs|cyberConfig][$temp = 4, $activeSlave.amp = -5, $stockpile.cyberneticPLimb -= 1]]<</if>>
 			<<else>>
-				 //To equip more advanced prosthetics you will need to upgrade your slaves' PLimb interface.//
+				//To equip more advanced prosthetics you will need to upgrade your slaves' PLimb interface.//
 			<</if>>
 		<</if>>
 
diff --git a/src/js/rulesAssistantOptions.tw b/src/js/rulesAssistantOptions.tw
index 50216e8f74ef3f8f58754a95c4f5daef7f9badaf..280ade70858bcf9e8594c1626c0733d8a97f3c13 100644
--- a/src/js/rulesAssistantOptions.tw
+++ b/src/js/rulesAssistantOptions.tw
@@ -179,7 +179,7 @@ window.rulesAssistantOptions = (function() {
 			if (textinput) {
 				value = document.createElement("input");
 				value.setAttribute("type", "text");
-				value.classList.add("rajs-value"); // 
+				value.classList.add("rajs-value"); //
 				// call the variable binding when the input field is no longer being edited, and when the enter key is pressed
 				value.onblur = () => {this.inputEdited(); };
 				value.onkeypress = (e) => { if (returnP(e)) this.inputEdited(); };
@@ -999,16 +999,16 @@ window.rulesAssistantOptions = (function() {
 			this.appendChild(new NailsList());
 			this.appendChild(new HairLengthList());
 			this.appendChild(new HaircutsList());
-			this.appendChild(new HairColourList());
+			this.appendChild(new HairColorList());
 			this.appendChild(new HairStyleList());
 			this.appendChild(new EyebrowColorList());
 			this.appendChild(new EyebrowStyleList());
 			this.appendChild(new EyebrowFullnessList());
-			this.appendChild(new PubicHairColourList());
+			this.appendChild(new PubicHairColorList());
 			this.appendChild(new PubicHairStyleList());
-			this.appendChild(new ArmpitHairColourList());
+			this.appendChild(new ArmpitHairColorList());
 			this.appendChild(new ArmpitHairStyleList());
-			this.appendChild(new SkinColourList());
+			this.appendChild(new SkinColorList());
 		}
 	}
 
@@ -2123,9 +2123,9 @@ window.rulesAssistantOptions = (function() {
 		constructor() {
 			super(current_rule.set.eyeColor);
 			this.appendChild(new OptionsItem("No default Setting", () => this.setValue("no default setting")));
-			this.colourlist = new LensesColourList();
+			this.colorlist = new LensesColorList();
 			this.shapelist = new LensesShapeList();
-			this.appendChild(this.colourlist);
+			this.appendChild(this.colorlist);
 			this.appendChild(this.shapelist);
 		}
 
@@ -2140,8 +2140,8 @@ window.rulesAssistantOptions = (function() {
 
 		combine() {
 			const lst = [];
-			if (this.colourlist.value !== "no default setting")
-				lst.push(this.colourlist.value);
+			if (this.colorlist.value !== "no default setting")
+				lst.push(this.colorlist.value);
 			if (this.shapelist.value !== "no default setting")
 				lst.push(this.shapelist.value);
 			if (lst.length === 0) return "no default setting";
@@ -2155,7 +2155,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class LensesColourList extends Options {
+	class LensesColorList extends Options {
 		constructor() {
 			const items = [];
 			[
@@ -2289,7 +2289,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class HairColourList extends List {
+	class HairColorList extends List {
 		constructor() {
 			const pairs = [
 				["no default setting"],
@@ -2444,7 +2444,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class PubicHairColourList extends List {
+	class PubicHairColorList extends List {
 		constructor() {
 			const pairs = [
 				["no default setting"],
@@ -2504,7 +2504,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class ArmpitHairColourList extends List {
+	class ArmpitHairColorList extends List {
 		constructor() {
 			const pairs = [
 				["no default setting"],
@@ -3474,7 +3474,7 @@ window.rulesAssistantOptions = (function() {
 		}
 	}
 
-	class SkinColourList extends List {
+	class SkinColorList extends List {
 		constructor() {
 			const items = [
 				["no default setting"],
diff --git a/src/js/slaveCostJS.tw b/src/js/slaveCostJS.tw
index a177252022731dc9afafbc8c6b65089c120e8352..1391670508782f6fa01b12c4d8d794d347441831 100644
--- a/src/js/slaveCostJS.tw
+++ b/src/js/slaveCostJS.tw
@@ -1257,8 +1257,8 @@ window.Beauty = (function() {
 
 window.FResult = (function() {
 	"use strict";
-	// we can't initialise our global variables on load, because SugarCube.State isn't initialised
-	// instead, declare them and initialise on run time
+	// we can't initialize our global variables on load, because SugarCube.State isn't initialized
+	// instead, declare them and initialize on run time
 	let V, result, incest_bonus;
 	function FResult(slave) {
 		V = State.variables;
diff --git a/src/js/textInput.tw b/src/js/textInput.tw
index 5480eece77e64ca450bcb99d9dc8f298581ad10c..35a28459f906cb9d05623368b5b6a08f6175e23c 100644
--- a/src/js/textInput.tw
+++ b/src/js/textInput.tw
@@ -33,7 +33,7 @@ Macro.add("textinput", {
 			.attr({
 				rows: 4,
 				// cols: 68, // instead of setting "cols" we set the `min-width` in CSS
-				tabindex: 0 // for accessiblity
+				tabindex: 0 // for accessibility
 			})
 			.addClass("macro-textarea") // "hijack" the .macro-textarea class
 			.on("input", function() {
diff --git a/src/npc/asDump.tw b/src/npc/asDump.tw
index 95994df71ea55339ca3237ac8b8c32d6c26f7499..ea6597530b66da6189cbd4679ff7a1800d52b049 100644
--- a/src/npc/asDump.tw
+++ b/src/npc/asDump.tw
@@ -2,7 +2,7 @@
 
 <<if (ndef $activeSlave) || ($activeSlave == 0)>>
 
-	@@.red;ERROR:@@  AS Dump, activeSlave invalid, returnTo is '$returnTo', previous passage was '<<print previous()>>'. Please report this.
+	@@.red;ERROR:@@ AS Dump, activeSlave invalid, returnTo is '$returnTo', previous passage was '<<print previous()>>'. Please report this.
 
 	<<link "Continue">><<goto $returnTo>><</link>> | [[Go Back|previous()]]
 
diff --git a/src/npc/databases/dfSlavesDatabase.tw b/src/npc/databases/dfSlavesDatabase.tw
index ac0cb74b62b6ad697fbbaf23dbd5cd4820a7697b..509a45f1a6504d75b9116b449e655e0294f3f6ff 100644
--- a/src/npc/databases/dfSlavesDatabase.tw
+++ b/src/npc/databases/dfSlavesDatabase.tw
@@ -43,7 +43,7 @@
 
 <<if $seeExtreme == 1>>
 <<set _HS = {}>>
-<<set _HS.slaveName = "Plum", _HS.birthName = "Plum", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20,  _HS.eyeColor = "brown", _HS.hColor = "brown", _HS.skin = "pale", _HS.hLength = 20, _HS.hStyle = "short and wavy", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.lips = 35, _HS.vagina = 4, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.vaginalSkill = 15, _HS.oralSkill = 15, _HS.analSkill = 15, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.customTat = "Cored plums are tattooed on her buttocks and on her face.", _HS.customDesc = "She has massive C-clamp piercings in her back that allow her to act as furniture, and a truly enormous vagina.", _HS.clitPiercing = 2, _HS.corsetPiercing = 1, _HS.sexualFlaw = "self hating", _HS.clothes = "no clothing", _HS.vaginalAccessory = "long, huge dildo">>
+<<set _HS.slaveName = "Plum", _HS.birthName = "Plum", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 28, _HS.physicalAge = 28, _HS.visualAge = 28, _HS.ovaryAge = 28, _HS.health = 20, _HS.devotion = 75, _HS.muscles = 30, _HS.weight = 20, _HS.eyeColor = "brown", _HS.hColor = "brown", _HS.skin = "pale", _HS.hLength = 20, _HS.hStyle = "short and wavy", _HS.pubicHStyle = "waxed", _HS.boobs = 400, _HS.nipplesPiercing = 1, _HS.butt = 2, _HS.lips = 35, _HS.vagina = 4, _HS.vaginaLube = 1, _HS.vaginaPiercing = 2, _HS.preg = -2, _HS.anus = 2, _HS.ovaries = 1, _HS.vaginalSkill = 15, _HS.oralSkill = 15, _HS.analSkill = 15, _HS.vaginalAccessory = "large dildo", _HS.buttplug = "large plug", _HS.attrXY = 40, _HS.fetishKnown = 1, _HS.customTat = "Cored plums are tattooed on her buttocks and on her face.", _HS.customDesc = "She has massive C-clamp piercings in her back that allow her to act as furniture, and a truly enormous vagina.", _HS.clitPiercing = 2, _HS.corsetPiercing = 1, _HS.sexualFlaw = "self hating", _HS.clothes = "no clothing", _HS.vaginalAccessory = "long, huge dildo">>
 /*vibe nips, can act as furniture*/
 <<set $heroSlaves.push(_HS)>>
 <</if>>
diff --git a/src/npc/descriptions/fAnus.tw b/src/npc/descriptions/fAnus.tw
index 1e7a97e4b8ea0187687047bbdcd8c1111eec46db..ed3a21ae9ea67a9fdecc7ea36410c8e485cace28 100644
--- a/src/npc/descriptions/fAnus.tw
+++ b/src/npc/descriptions/fAnus.tw
@@ -65,7 +65,7 @@ $His anus is invitingly bleached,
 	<</if>>
 	<<set $activeSlave.anus++>>
 <<elseif $activeSlave.fetish == "mindbroken">>
-	<<if ($activeSlave.amp != 1)>>You instruct $him to present $his anus. $He dully kneels and spreads $his buttocks<<if ($PC.dick == 0)>>as you don a strap-on<</if>>. You spit on $his hole and ram <<if ($PC.dick == 0)>>it<<else>>your cock<</if>> up $his butt.<<else>>Talking to a broken mind is pointless, so you simply set $his on the couch, spread $his buttocks with one hand, spit on $his hole, and ram <<if ($PC.dick == 0)>>it<<else>>your cock<</if>> up $his <<if $seeRace == 1>>$activeSlave.race <</if>>butt.<</if>> $His butthole spasms as you assrape $him, <<if ($PC.dick == 0)>>an amusing sight<<else>>squeezing your dick nicely<</if>>.
+	<<if ($activeSlave.amp != 1)>>You instruct $him to present $his anus. $He dully kneels and spreads $his buttocks<<if ($PC.dick == 0)>>as you don a strap-on<</if>>. You spit on $his hole and ram <<if ($PC.dick == 0)>>it<<else>>your cock<</if>> up $his butt.<<else>>Talking to a broken mind is pointless, so you simply set $him on the couch, spread $his buttocks with one hand, spit on $his hole, and ram <<if ($PC.dick == 0)>>it<<else>>your cock<</if>> up $his <<if $seeRace == 1>>$activeSlave.race <</if>>butt.<</if>> $His butthole spasms as you assrape $him, <<if ($PC.dick == 0)>>an amusing sight<<else>>squeezing your dick nicely<</if>>.
 	<<if ($activeSlave.dick != 0) && canAchieveErection($activeSlave)>>
 		<<if $activeSlave.dickAccessory == "chastity">>
 			Automatic responses give $him an erection, which $his chastity makes so uncomfortable that $he spasms. This cycle continues repeatedly, $his rectum squeezing unconsciously each time.
diff --git a/src/npc/descriptions/fBoobs.tw b/src/npc/descriptions/fBoobs.tw
index b82e70a9a0a48269799def519a996c5100a45055..d2f95eb1df26ae8dc5855e9005eb647308475e21 100644
--- a/src/npc/descriptions/fBoobs.tw
+++ b/src/npc/descriptions/fBoobs.tw
@@ -123,7 +123,7 @@ tits.
 	<<if $PC.dick == 1>>
 	$His excessive butt makes $him a unique appliance for mammary intercourse. You lay $him down on the ground on $his back, $his butt hoisting $his crotch high above $his head, lube $his cleavage, and straddle $his torso. With your cock between $his breasts, you <<if ($activeSlave.boobs >= 650)>>squash $his tits together to form a nice lubricated channel,<<else>>hold your cock in place,<</if>> and ride back and forth on $him<<if $PC.vagina == 1>>, leaving your pussyjuice on $his chest where you rubbed against $him<</if>>. $He has some trouble breathing under the assault, but $he manages. And for the finale, $he's totally unable to avoid a perfect cumshot.
 	<<elseif $PC.boobs != 0>>
-	You set $his upright on your lap, facing you, so that your breasts and $hers are resting heavily against one another and $his massive ass covers your lap. $He turns $his head to avoid getting splashed in the eyes as you add a generous coating of oil to the combined breastflesh. You reach around to grab $his luxurious ass and jiggle $his up and down, giving you both a wonderful mammary oil massage.
+	You set $him upright on your lap, facing you, so that your breasts and $hers are resting heavily against one another and $his massive ass covers your lap. $He turns $his head to avoid getting splashed in the eyes as you add a generous coating of oil to the combined breastflesh. You reach around to grab $his luxurious ass and jiggle $his up and down, giving you both a wonderful mammary oil massage.
 	<<else>>
 		You set $his nearly helpless body on the floor and then scoot your hips under the massive weight of $his tits. The heft feels nice against you, and you worm a naughty hand under there to play with yourself in the warm cave formed by your pelvis and $his udders.
 	<</if>>
diff --git a/src/npc/descriptions/fButt.tw b/src/npc/descriptions/fButt.tw
index 5e63f71a2747c9837b0d4fdc71d0b5be4e257b5c..79928dfa5d111dcc0c3159477eb2459a8e7561f4 100644
--- a/src/npc/descriptions/fButt.tw
+++ b/src/npc/descriptions/fButt.tw
@@ -127,7 +127,7 @@ $His anus is invitingly bleached,
 	<</if>>
 	<<= BothVCheck()>>
 <<else>>
-	<<if ($activeSlave.amp != 1)>>$He kneels on the floor<<else>>You lay $his on the floor<</if>> so you can take $his at will<<if ($PC.dick == 0)>>, and don a strap-on<</if>>. You finger $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass while
+	<<if ($activeSlave.amp != 1)>>$He kneels on the floor<<else>>You lay $him on the floor<</if>> so you can take $his at will<<if ($PC.dick == 0)>>, and don a strap-on<</if>>. You finger $his <<if $seeRace == 1>>$activeSlave.race <</if>>ass while
 	<<if canDoVaginal($activeSlave)>>
 		fucking $his pussy
 	<<else>>
diff --git a/src/npc/descriptions/fLips.tw b/src/npc/descriptions/fLips.tw
index 1ea7df48126a0f60993dce388b4c78e3e7012d83..b6ecbe4ecac3c85d86641a6d46bd6d79a397ac1e 100644
--- a/src/npc/descriptions/fLips.tw
+++ b/src/npc/descriptions/fLips.tw
@@ -76,7 +76,7 @@ You tell $activeSlave.slaveName to
 <<if ($activeSlave.amp == 1)>>
 	You set $his limbless torso on the
 	<<if ($PC.dick != 0)>>
-		edge of your desk with $his on $his back. $His head dangles off the edge of the desk, leaving $his <<if $seeRace == 1>>$activeSlave.race <</if>>mouth at the perfect angle for use. As an amputee $he has absolutely no control over the depth or quickness of oral sex, so you are careful not to hurt $him. Even so, you take $him to the edge of gagging, enjoying the sight of $his $activeSlave.skin throat bulging. Eventually you shoot your load directly down $his gullet.
+		edge of your desk with $him on $his back. $His head dangles off the edge of the desk, leaving $his <<if $seeRace == 1>>$activeSlave.race <</if>>mouth at the perfect angle for use. As an amputee $he has absolutely no control over the depth or quickness of oral sex, so you are careful not to hurt $him. Even so, you take $him to the edge of gagging, enjoying the sight of $his $activeSlave.skin throat bulging. Eventually you shoot your load directly down $his gullet.
 		<<if $PC.vagina == 1>>If $he thought that was it, $he's soon corrected: you hike yourself up further, and grind your pussy against $his face.<</if>>
 	<<else>>
 		floor next to your desk and kneel on $him with your legs on either side of $him, so your pussylips are hard against $his <<if $seeRace == 1>>$activeSlave.race <</if>>mouth. $He desperately eats you out, trying to get you off as fast as possible so $he can get a bit more air, but you grind down without mercy, taking your pleasure.
diff --git a/src/npc/descriptions/fPoolSex.tw b/src/npc/descriptions/fPoolSex.tw
index 615b4b4605b665c603a69ecad6cebb813917f80c..9d0c485874eeef7efd58bdcfadf5f323a938bbf5 100644
--- a/src/npc/descriptions/fPoolSex.tw
+++ b/src/npc/descriptions/fPoolSex.tw
@@ -59,7 +59,7 @@ You order $him to meet you in the spa for some quality time in the penthouse's r
 		<<if $activeSlave.dick >= 1>>
 			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream $his <<if canDoVaginal($activeSlave)>>pussy. <<= VaginalVCheck()>><<else>>asshole. <<= AnalVCheck()>><</if>> Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your strapon to his needy hole, you tease $him for a moment before ramming home, driving the both of you to repeated orgasm.
 		<<else>>
-			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $his, you rub your clits together, driving the both of you to repeated orgasm.
+			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $hers, you rub your clits together, driving the both of you to repeated orgasm.
 			<<set $activeSlave.vaginalCount++, $vaginalTotal++>>
 		<</if>>
 	<</if>>
@@ -108,7 +108,7 @@ You order $him to meet you in the spa for some quality time in the penthouse's r
 		<<if $activeSlave.dick >= 1>>
 			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream $his <<if canDoVaginal($activeSlave)>>pussy. <<= VaginalVCheck()>><<else>>asshole. <<= AnalVCheck()>><</if>> Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your strapon to his needy hole, you tease $him for a moment before ramming home, driving the both of you to repeated orgasm.
 		<<else>>
-			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $his, you rub your clits together, driving the both of you to repeated orgasm.
+			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $hers, you rub your clits together, driving the both of you to repeated orgasm.
 			<<set $activeSlave.vaginalCount++, $vaginalTotal++>>
 		<</if>>
 	<</if>>
@@ -163,7 +163,7 @@ You order $him to meet you in the spa for some quality time in the penthouse's r
 			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that you can don a dildo and ream $his <<if canDoVaginal($activeSlave)>>pussy. <<= VaginalVCheck()>><<else>>asshole. <<= AnalVCheck()>><</if>> Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your strapon to his needy hole, you tease $him for a moment before ramming home, driving the both of you to repeated orgasm.
 			<<= AnalVCheck()>>
 		<<else>>
-			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $his, you rub your clits together, driving the both of you to repeated orgasm.
+			When you feel yourself at the edge of orgasm, you have the pool's mobility aids rotate $him into a position level with the pool's edge, then hop up on that ledge yourself so that your pussies are level. Satisfied that the angles are right, you grab hold of $his hips and slide half on top of $him, resting your lower half on the rear swell of $his obscenely bloated belly. Pressing your lower lips to $hers, you rub your clits together, driving the both of you to repeated orgasm.
 			<<set $activeSlave.vaginalCount++, $vaginalTotal++>>
 		<</if>>
 	<</if>>
diff --git a/src/pregmod/editGenetics.tw b/src/pregmod/editGenetics.tw
index 7ff51d1def720b00227b91b512d8457f77029e65..ae63450e7ad6687f60b9f239b4f759cde295bb38 100644
--- a/src/pregmod/editGenetics.tw
+++ b/src/pregmod/editGenetics.tw
@@ -262,7 +262,7 @@ table.slave-genetic-details td.editor select:hover { border: 1px solid #8cf; tra
 				el.addClass('selectedslave');
 				var slave = SugarCube.State.variables.genePool.find(function(s) { return s.ID === id; });
 				geneDetails.html(tmpl.geneDetails(slave));
-				
+
 				var numberEditorOpen = function() {
 					var td = jQuery(this);
 					td.off('click');
diff --git a/src/pregmod/forceFeeding.tw b/src/pregmod/forceFeeding.tw
index a1ee9373f953f37e8bde57ab2ffc7f70c391c73c..931cf841a2a4cde024edb917cf8a6a998e028787 100644
--- a/src/pregmod/forceFeeding.tw
+++ b/src/pregmod/forceFeeding.tw
@@ -102,7 +102,7 @@ $He is going to eat it all and you're going to enjoy $him as $he does it.
 	<</if>>
 <</if>>
 <<if $activeSlave.fetish == "mindbroken">>
-	You reach out and wrap you arms	
+	You reach out and wrap you arms
 <</if>>
 
 around $his
diff --git a/src/pregmod/widgets/pregmodBirthWidgets.tw b/src/pregmod/widgets/pregmodBirthWidgets.tw
index 1f37762251ba5701d620f0519681fdecc180aae9..7decc8672d27c45c4e2fb99bc89ec3084e493573 100644
--- a/src/pregmod/widgets/pregmodBirthWidgets.tw
+++ b/src/pregmod/widgets/pregmodBirthWidgets.tw
@@ -942,7 +942,7 @@
 	<<if (random(1,20) > $suddenBirth)>>
 		$He heads to a private room in the back of the club accompanied by a influential patron. $He settles $himself onto his lap and begins working on <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> baby, basking in his attention. Placing $his child outside the room, $he returns to pleasure $his tease.
 	<<else>>
-		While DJing $clubName, $slaves[$i].slaveName's water breaks. $He can't stop $his setlist without drawing attention, so $he tries $his best to ride out the contractions. As soon as the opportunity arises, $he attempts to sneak off stage. However, a number of fans block $his progress keeping $his on stage. Before long the contractions are too much to bear and $he drops to the ground.
+		While DJing $clubName, $slaves[$i].slaveName's water breaks. $He can't stop $his setlist without drawing attention, so $he tries $his best to ride out the contractions. As soon as the opportunity arises, $he attempts to sneak off stage. However, a number of fans block $his progress keeping $him on stage. Before long the contractions are too much to bear and $he drops to the ground.
 		<<set $humiliation = 1>>
 		<<ClothingBirth>>
 		Exhausted, $he sits up and smiles to the crowd. $His show definitely drew attention to $his club. With a burst of energy $he hefts $his still very gravid body to its feet, bows to the crowd, and gathers <<if $slaves[$i].birthsTotal == 0>>$his first<<else>>this week's<</if>> child before making $his way off stage. As $he leaves the public's gaze, $he shouts out with a wink "Same time next week!".
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index 4b908f7733c359ef5c7f8d9be83ede4766837d2a..986c0315c518022955146e3eebeb4e66bf11f119 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -1114,7 +1114,7 @@
 /*SFVAR*/
 <<if ndef $SF>>
 	<<if $securityForceEventSeen < 1>> <<set $securityForceActive = -1>> <<else>> <<set $securityForceActive = 2>> <</if>>
-	
+
 	<<set $SF = {Toggle:$SFMODToggle, Active:$securityForceActive}>>
 	<<unset $SFMODToggle, $securityForceActive, $securityForceCreate, $securityForceEventSeen>>
 	<<if ndef $securityForceName>><<set $securityForceName = "the special force">><</if>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index 106d526edce2f7fe33a55b3030eb8cbb41916887..9ab36514ef93691da63a475bda047f2552a69a8b 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -5188,7 +5188,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<else>>
 				$His eyes begin to water as $he struggles not to sob but $he quickly loses composure and hastily flees your gaze, likely to the cafeteria.
 			<</if>>
-			$He may have run out of your office @@.gold;in tears,@@ but $he'll quickly come to terms with all that matters is @@.hotpink;your judgment, not $his.@@ Even more so when $he realizes the resuliting stress eating only @@.lime;filled her out more.@@
+			$He may have run out of your office @@.gold;in tears,@@ but $he'll quickly come to terms with all that matters is @@.hotpink;your judgment, not $hers.@@ Even more so when $he realizes the resuliting stress eating only @@.lime;filled her out more.@@
 			<<set $activeSlave.devotion += 7, $activeSlave.trust -= 5, $activeSlave.weight += 5>>
 		<<elseif $activeSlave.behavioralFlaw == "anorexic">>
 			<<if canTalk($activeSlave)>>
@@ -5204,7 +5204,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<else>>
 				$His eyes begin to water as $he struggles not to sob but $he quickly loses composure and hastily flees your gaze.
 			<</if>>
-			$He may have run out of your office @@.gold;in tears,@@ but $he'll quickly come to terms with all that matters is @@.hotpink;your judgment, not $his.@@
+			$He may have run out of your office @@.gold;in tears,@@ but $he'll quickly come to terms with all that matters is @@.hotpink;your judgment, not $hers.@@
 			<<set $activeSlave.devotion += 5, $activeSlave.trust -= 5>>
 		<</if>>
 	<</replace>>
@@ -6039,7 +6039,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 			<<set _didAnal = 1>>
 		<</if>>
 	<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishKnown == 1)>>
-		you shove $him back towards the couch and leap onto $him, pulling your legs into a scissor position. You bang $him hard, and $he grinds $his hips back at you with enthusiasm. This mutually challenging fuck goes on for a long time, to sweaty, endorphin-fuelled muscle exhaustion.
+		you shove $him back towards the couch and leap onto $him, pulling your legs into a scissor position. You bang $him hard, and $he grinds $his hips back at you with enthusiasm. This mutually challenging fuck goes on for a long time, to sweaty, endorphin-fueled muscle exhaustion.
 		<<if canDoVaginal($activeSlave)>>
 			<<set _didVaginal = 1>>
 		<<else>>
@@ -8688,7 +8688,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 		<<= VaginalVCheck()>>
 	<</if>>
 	<</replace>>
-<</link>>
+<</link>><<if canDoVaginal($activeSlave) && ($activeSlave.vagina == 0)>>//This option will take virginity//<<elseif !canDoVaginal($activeSlave) && ($activeSlave.anus == 0)>> //This option will take anal virginity//<</if>>
 <br><<link "Show the slut off">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
diff --git a/src/uncategorized/RESSTR.tw b/src/uncategorized/RESSTR.tw
index c86a9241dcd5168435ac58cb926e4ddecc27a745..75b19232503d838d288a73c05ca57f54fdc35975 100644
--- a/src/uncategorized/RESSTR.tw
+++ b/src/uncategorized/RESSTR.tw
@@ -23,31 +23,31 @@
 /* Some scenes are also stored in useGuard.tw, walkPast.tw, and toychest.tw			*/
 
 <<if Array.isArray($RESSTRevent)>>
-  <<set $activeSlave = $eventSlave>>
-  <<if $cheatMode == 1>>
-	<<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */
-	''A random event would have been selected from the following:''
-	<br>
-	<<for _i = 0; _i < $RESSTRevent.length; _i++>>
-		<<print "[[$RESSTRevent[_i]|RESSTR][$RESSTRevent = $RESSTRevent[" + _i + "]]]">>
+	<<set $activeSlave = $eventSlave>>
+	<<if $cheatMode == 1>>
+		<<set $nextButton = "Back", $nextLink = "Nonrandom Event", $returnTo = "Nonrandom Event">> /* if user just clicks spacebar */
+		''A random event would have been selected from the following:''
 		<br>
-	<</for>>
-	<br><br>[[Go Back to Random Individual Event|Random Individual Event][$activeSlave = 0]]
-  <<else>>
-	<<set $RESSTRevent = $RESSTRevent.random()>>
-	<<goto "RESSTR">>
-  <</if>>
+		<<for _i = 0; _i < $RESSTRevent.length; _i++>>
+			<<print "[[$RESSTRevent[_i]|RESSTR][$RESSTRevent = $RESSTRevent[" + _i + "]]]">>
+			<br>
+		<</for>>
+		<br><br>[[Go Back to Random Individual Event|Random Individual Event][$activeSlave = 0]]
+	<<else>>
+		<<set $RESSTRevent = $RESSTRevent.random()>>
+		<<goto "RESSTR">>
+	<</if>>
 <<else>>
 
 <<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "Next Week">>
 
 /* 000-250-006 */
 <<if $seeImages == 1>>
-<<if $imageChoice == 1>>
-	<div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div>
-<<else>>
-	<div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div>
-<</if>>
+	<<if $imageChoice == 1>>
+		<div class="imageRef lrgVector"><<SlaveArt $activeSlave 2 0>></div>
+	<<else>>
+		<div class="imageRef lrgRender"><<SlaveArt $activeSlave 2 0>></div>
+	<</if>>
 <</if>>
 /* 000-250-006 */
 
diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw
index 2cdeb84ad592ac8090b3eaa1fd4e2cd6776346db..e3ac27d113c8d256f5a51c210bad8d5b30d91b51 100644
--- a/src/uncategorized/bodyModification.tw
+++ b/src/uncategorized/bodyModification.tw
@@ -966,7 +966,7 @@ Choose a site for branding:
 		<<set $degradation += 10>>
 		<<goto "Body Modification">>
 	<</link>>
-	 $brandTarget, the
+	$brandTarget, the
 	<<link "right">>
 		<<set $brandApplied = 1>>
 		<<set $activeSlave.brand = $brandDesign>>
diff --git a/src/uncategorized/brothelReport.tw b/src/uncategorized/brothelReport.tw
index b1d93e70fbc0e9af8b3efee9c0e27bbd050e9821..9243d207b8427a4913cc04743e0dfe7a9527286b 100644
--- a/src/uncategorized/brothelReport.tw
+++ b/src/uncategorized/brothelReport.tw
@@ -141,7 +141,7 @@
 					$He shows off how even a cow like $slaves[$i].slaveName can achieve physical perfection.
 					<<set $madamCashBonus += 0.15>>
 				<<else>>
-					 A<<if ($slaves[$i].muscles < 30)>>n unmuscled,<</if>><<if ($slaves[$i].weight > 30)>> fat,<</if>> 'prestigious' <<if ($slaves[$i].lactation > 0)>>cow<<elseif (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>>mass of titflesh<<else>>slave<</if>> like $slaves[$i].slaveName is woefully out of fashion, so $Milkmaid.slaveName tries to draw attention away from _him2.
+					A<<if ($slaves[$i].muscles < 30)>>n unmuscled,<</if>><<if ($slaves[$i].weight > 30)>> fat,<</if>> 'prestigious' <<if ($slaves[$i].lactation > 0)>>cow<<elseif (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>>mass of titflesh<<else>>slave<</if>> like $slaves[$i].slaveName is woefully out of fashion, so $Milkmaid.slaveName tries to draw attention away from _him2.
 				<</if>>
 			<<else>>
 				<<if ($slaves[$i].lactation > 0) && (($slaves[$i].boobs-$slaves[$i].boobsImplant) > 6000)>>
diff --git a/src/uncategorized/corporationDevelopments.tw b/src/uncategorized/corporationDevelopments.tw
index 8ed45fe1619ec3666de885b0f5a47009011ec59b..9b29830b1f27535e494280f27556fbea8bf70664 100644
--- a/src/uncategorized/corporationDevelopments.tw
+++ b/src/uncategorized/corporationDevelopments.tw
@@ -99,23 +99,23 @@ its human holdings.
 Since it is
 <<if _dividendPerShare > 5>> <<set _dividendPerShare = 5 * Math.floor(0.2 * Math.log(_dividendPerShare)/Math.log(1.25))>>
 	<<set _multplier = _dividendPerShare>>
-	 incredibly profitable, a massive dividend of @@.yellowgreen;<<print cashFormat(_dividendPerShare)>>@@
+	incredibly profitable, a massive dividend of @@.yellowgreen;<<print cashFormat(_dividendPerShare)>>@@
 <<elseif _dividendPerShare > 3>> <<set _multplier = 3>>
-	 extremely profitable, a huge dividend of @@.yellowgreen;¤3@@
+	extremely profitable, a huge dividend of @@.yellowgreen;¤3@@
 <<elseif _dividendPerShare > 2>> <<set _multplier = 2>>
-	 highly profitable, a huge dividend of @@.yellowgreen;¤2@@
+	highly profitable, a huge dividend of @@.yellowgreen;¤2@@
 <<elseif _dividendPerShare > 1>> <<set _multplier = 1>>
-	 very profitable, a large dividend of @@.yellowgreen;¤1@@
+	very profitable, a large dividend of @@.yellowgreen;¤1@@
 <<elseif _dividendPerShare > 0.5>> <<set _multplier = 0.5>>
-	 quite profitable, a moderate dividend of @@.yellowgreen;¤0.5@@
+	quite profitable, a moderate dividend of @@.yellowgreen;¤0.5@@
 <<elseif _dividendPerShare > 0.3>> <<set _multplier = 0.3>>
-	 acceptably profitable, a reasonable dividend of @@.yellowgreen;¤0.3@@
+	acceptably profitable, a reasonable dividend of @@.yellowgreen;¤0.3@@
 <<elseif _dividendPerShare > 0.2>> <<set _multplier = 0.2>>
-	 moderately profitable, a modest dividend of @@.yellowgreen;¤0.2@@
+	moderately profitable, a modest dividend of @@.yellowgreen;¤0.2@@
 <<elseif _dividendPerShare > 0.1>> <<set _multplier = 0.1>>
-	 modestly profitable, a small dividend of @@.yellowgreen;¤0.1@@
+	modestly profitable, a small dividend of @@.yellowgreen;¤0.1@@
 <<elseif $corpProfit > 0>> <<set _multplier = 1+Math.ceil(($corpProfit*0.2*$personalShares)/_totalShares)>>
-		bearly profitable, a meager dividend 
+	barely profitable, a meager dividend
 <</if>>
 <<if _dividendPerShare >= 0.1>>/share<</if>> was paid out to stockholders; you received @@.yellowgreen;<<if _dividendPerShare >= 0.1>> <<print cashFormat($personalShares*_multplier)>> <<else>> <<print cashFormat(_multplier)>> <</if>>@@.
 <<if _dividendPerShare >= 0.1>>
diff --git a/src/uncategorized/costsReport.tw b/src/uncategorized/costsReport.tw
index 783c2499379d20dbe178e26df35bc73406c60a43..d8423cf34f7a9770182e52acdaf2743f0e1ac276 100644
--- a/src/uncategorized/costsReport.tw
+++ b/src/uncategorized/costsReport.tw
@@ -444,15 +444,15 @@ $nursery > 0 || $masterSuiteUpgradePregnancy > 0 || $incubator > 0 ||
 			<<set _individualCosts -= $foodCost>>
 	<</switch>>
 	<<if $slaves[$i].weight > 130 || $slaves[$i].weight > 50 || $slaves[$i].weight < -50>>
-		<br>&nbsp;&nbsp;&nbsp;&nbsp;<i>Caloric adjustment for
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<i>Caloric adjustment for</i>
 		<<if $slaves[$i].weight > 130>>
-			heavy weight:</i> <<print cashFormat($foodCost*2)>>
+			<i>heavy weight:</i> <<print cashFormat($foodCost*2)>>
 			<<set _individualCosts += $foodCost*2>>
 		<<elseif $slaves[$i].weight > 50>>
-			high weight: <<print cashFormat($foodCost)>>
+			<i>high weight:</i> <<print cashFormat($foodCost)>>
 			<<set _individualCosts += $foodCost>>
 		<<elseif $slaves[$i].weight < -50>>
-			light weight: //reduced by// <<print cashFormat($foodCost)>>
+			<i>light weight:</i> //reduced by// <<print cashFormat($foodCost)>>
 			<<set _individualCosts -= $foodCost>>
 		<</if>>
 	<</if>>
diff --git a/src/uncategorized/hgSelect.tw b/src/uncategorized/hgSelect.tw
index 168ed9c184ca999bc0a6362b2e42282c5690560b..57cf77c108cbcc6fef29640691fdc7f53d64a08a 100644
--- a/src/uncategorized/hgSelect.tw
+++ b/src/uncategorized/hgSelect.tw
@@ -73,7 +73,7 @@ _HGName
 		<<if $HeadGirl.devotion > 95>>$He loves you so much $he'll fuck them until $he's sore.<<else>>If $he were more devoted to you, $he might be able to drive herself to get hard and service one more.<</if>>
 		<<if $HeadGirl.balls >= 120>>$His unreal balls produce nearly an endless supply of semen; $his ability to impregnate is almost limitless.<<elseif $HeadGirl.balls >= 80>>$His inhuman balls produce so much semen $he can easily impregnate twenty girls in one sitting.<<elseif $HeadGirl.balls >= 50>>$His giant balls produce so much semen $he can easily impregnate twelve girls in one sitting.<<elseif $HeadGirl.balls >= 25>>$His oversized balls produce so much semen $he can cum repeatedly in a single session.<<elseif $HeadGirl.balls >= 5>>$His big balls produce so much semen $he can cum more before $he's drained.<<else>>Bigger balls would let $him cum more before $he's drained.<</if>>
 		<<if $HeadGirl.health > 95>>$His wonderful health lets $him get hard and stay hard all the time.<<else>>If $his health were perfect, $he might be able to get hard more often.<</if>>
-		<<if $HeadGirl.energy > 95>>$His nymphomania drives $his to go above and beyond in this.<<else>>A more powerful sex drive could reduce $his refractory period.<</if>>
+		<<if $HeadGirl.energy > 95>>$His nymphomania drives $him to go above and beyond in this.<<else>>A more powerful sex drive could reduce $his refractory period.<</if>>
 	<<else>>
 		However, $HeadGirl.slaveName cannot perform this duty.
 	<</if>>
diff --git a/src/uncategorized/manageArcology.tw b/src/uncategorized/manageArcology.tw
index d3335db7c91e48492755eb77f25cd649e5c1b38f..4e2ac3862c4bda2add287c2fdf7f87c0f413f371 100644
--- a/src/uncategorized/manageArcology.tw
+++ b/src/uncategorized/manageArcology.tw
@@ -36,7 +36,7 @@ __Construction__
 <br>
 
 <<if $arcologyUpgrade.drones != 1>>
-	//The first major upgrade needed is the installation of a drone security system so higher-class citizens will feel safe and protected should they choose to immigrate. This upgrade will cost <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>.//  [[Install drone security system|Manage Arcology][$cash -= Math.trunc(5000*$upgradeMultiplierArcology), $arcologyUpgrade.drones = 1, $secBots.active = 1, $secBots.troops = 30, $secBots.maxTroops = 30, $PC.engineering += 1]]
+	//The first major upgrade needed is the installation of a drone security system so higher-class citizens will feel safe and protected should they choose to immigrate. This upgrade will cost <<print cashFormat(Math.trunc(5000*$upgradeMultiplierArcology))>>.// [[Install drone security system|Manage Arcology][$cash -= Math.trunc(5000*$upgradeMultiplierArcology), $arcologyUpgrade.drones = 1, $secBots.active = 1, $secBots.troops = 30, $secBots.maxTroops = 30, $PC.engineering += 1]]
 <<elseif $arcologyUpgrade.hydro != 1>>
 	//The next major upgrade needed is the installation of a better water reclamation system so your residents will have access to cheaper water and hydroponically grown food. This upgrade will cost <<print cashFormat(Math.trunc(10000*$upgradeMultiplierArcology))>>.// [[Upgrade water reclamation system|Manage Arcology][$cash -= Math.trunc(10000*$upgradeMultiplierArcology), $arcologyUpgrade.hydro = 1, $PC.engineering += 1]]
 <<elseif $arcologyUpgrade.apron != 1>>
diff --git a/src/uncategorized/neighborDescription.tw b/src/uncategorized/neighborDescription.tw
index 5a7020ee7fbf2a0602973d8970c95984773820fd..18b9924226b8a67e803ef52f28104351c6aaad39 100644
--- a/src/uncategorized/neighborDescription.tw
+++ b/src/uncategorized/neighborDescription.tw
@@ -502,7 +502,7 @@ its neighbors.
 	<<elseif $arcologies[$i].FSArabianRevivalist > 40>>
 		<<set $desc = $desc + "working through which parts of Arabian romanticism to adopt and which to discard.">>
 	<<else>>
-		<<set $desc = $desc + "eagerly revelling in the most romantic parts of superficial Arabian romanticism.">>
+		<<set $desc = $desc + "eagerly reveling in the most romantic parts of superficial Arabian romanticism.">>
 	<</if>>
 	<<set _neighborDescription.push($desc)>>
 <</if>>
diff --git a/src/uncategorized/pCoupAftermath.tw b/src/uncategorized/pCoupAftermath.tw
index c7e62f385bcb3734a3bbfd5c57ca5cdf940f6ae9..871b1f9226c76aae60f35509e1820138dcc250d2 100644
--- a/src/uncategorized/pCoupAftermath.tw
+++ b/src/uncategorized/pCoupAftermath.tw
@@ -10,10 +10,10 @@ The face is vigorous, determined, <<if _num < $seeDicks>>and masculine. The very
 <<if $rivalSet != 0>>
 	And, as you suspected, it's one of your neighbors. It's the individual who owns
 	<<for $i = 0; $i < $arcologies.length; $i++>>
-	  <<if $arcologies[$i].rival == 1>>
-		'' $arcologies[$i].name.''
-		<<break>>
-	  <</if>>
+		<<if $arcologies[$i].rival == 1>>
+			'' $arcologies[$i].name.''
+			<<break>>
+		<</if>>
 	<</for>>
 	<br><br>
 <</if>>
@@ -44,17 +44,17 @@ You inquire as to whether there's any identifiable cause for the evident dislike
 	<<set $cash += 10000>>
 	<<set $rivalryPower = 1>>
 	<<if $rivalSet != 0>>
-	  <<for $i = 0; $i < $arcologies.length; $i++>>
-		<<if $arcologies[$i].rival == 1>>
-		  <<set $arcologies[$i].embargo = 2>>
-		  <<set $arcologies[$i].embargoTarget = 0>>
-		  <<set $arcologies[$i].influenceTarget = 0>>
-		  <<set $rivalOwner = $arcologies[$i].prosperity>>
-		  <<break>>
-		<</if>>
-	  <</for>>
+		<<for $i = 0; $i < $arcologies.length; $i++>>
+			<<if $arcologies[$i].rival == 1>>
+				<<set $arcologies[$i].embargo = 2>>
+				<<set $arcologies[$i].embargoTarget = 0>>
+				<<set $arcologies[$i].influenceTarget = 0>>
+				<<set $rivalOwner = $arcologies[$i].prosperity>>
+				<<break>>
+			<</if>>
+		<</for>>
 	<<else>>
-	  <<set $rivalOwner = $arcologies[0].prosperity>>
+		<<set $rivalOwner = $arcologies[0].prosperity>>
 	<</if>>
 	<</replace>>
 <</link>>
@@ -65,17 +65,17 @@ You inquire as to whether there's any identifiable cause for the evident dislike
 	<<set $cash -= 20000>>
 	<<set $rivalryPower = 5>>
 	<<if $rivalSet != 0>>
-	  <<for $i = 0; $i < $arcologies.length; $i++>>
-		<<if $arcologies[$i].rival == 1>>
-		  <<set $arcologies[$i].embargo = 3>>
-		  <<set $arcologies[$i].embargoTarget = 0>>
-		  <<set $arcologies[$i].influenceTarget = 0>>
-		  <<set $rivalOwner = $arcologies[$i].prosperity>>
-		  <<break>>
-		<</if>>
-	  <</for>>
+		<<for $i = 0; $i < $arcologies.length; $i++>>
+			<<if $arcologies[$i].rival == 1>>
+				<<set $arcologies[$i].embargo = 3>>
+				<<set $arcologies[$i].embargoTarget = 0>>
+				<<set $arcologies[$i].influenceTarget = 0>>
+				<<set $rivalOwner = $arcologies[$i].prosperity>>
+				<<break>>
+			<</if>>
+		<</for>>
 	<<else>>
-	  <<set $rivalOwner = $arcologies[0].prosperity>>
+		<<set $rivalOwner = $arcologies[0].prosperity>>
 	<</if>>
 	<</replace>>
 <</link>> //This will cost <<print cashFormat(20000)>>//
diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw
index 46417007acd6afe4fc0b8346455956ca21d09804..a4cb90db4b8af7e4438d8abae0cdc285f4de4843 100644
--- a/src/uncategorized/pRivalryActions.tw
+++ b/src/uncategorized/pRivalryActions.tw
@@ -3890,16 +3890,16 @@ You remind yourself that success in this conflict will not be defined by the tra
 	EKIA. Confirm, E. K. I. A. No other casualties, team exfiltrating."
 	<<set $rivalOwner = 0, $rivalryPower = 0>>
 	<<if $rivalSet != 0>>
-	  <<for _pra = 0; _pra < $arcologies.length; _pra++>>
-		<<if $arcologies[_pra].rival == 1>>
-		  <<set $arcologies[_pra].embargo = 0>>
-		  <<set $arcologies[_pra].embargoTarget = -1>>
-		  <<set $arcologies[_pra].influenceTarget = -1>>
-		  <<set $arcologies[_pra].rival = 0>>
-		  <<set $arcologies[_pra].government = "direct democracy">>
-		  <<break>>
-		<</if>>
-	  <</for>>
+		<<for _pra = 0; _pra < $arcologies.length; _pra++>>
+			<<if $arcologies[_pra].rival == 1>>
+				<<set $arcologies[_pra].embargo = 0>>
+				<<set $arcologies[_pra].embargoTarget = -1>>
+				<<set $arcologies[_pra].influenceTarget = -1>>
+				<<set $arcologies[_pra].rival = 0>>
+				<<set $arcologies[_pra].government = "direct democracy">>
+				<<break>>
+			<</if>>
+		<</for>>
 	<</if>>
 	<<if $hostageAnnounced == 1>>
 		$assistantName pauses. "Also confirm package is secure."
@@ -3951,17 +3951,17 @@ You remind yourself that success in this conflict will not be defined by the tra
 		<<set $rivalryPower = 0>>
 
 		<<if $rivalSet != 0>>
-		  <<for _pra = 0; _pra < $arcologies.length; _pra++>>
-			<<if $arcologies[_pra].rival == 1>>
-			  <<set $arcologies[_pra].embargo = 0>>
-			  <<set $arcologies[_pra].embargoTarget = -1>>
-			  <<set $arcologies[_pra].influenceTarget = -1>>
-			  <<set $arcologies[_pra].rival = 0>>
-			  <<set $arcologies[_pra].government = "direct democracy">>
-			  <<if _rivalCaptured == 1 && $arcologies[_pra].FSSupremacist > 20>><<set $rivalRace = $arcologies[_pra].FSSupremacistRace>><</if>>
-			  <<break>>
-			<</if>>
-		  <</for>>
+			<<for _pra = 0; _pra < $arcologies.length; _pra++>>
+				<<if $arcologies[_pra].rival == 1>>
+					<<set $arcologies[_pra].embargo = 0>>
+					<<set $arcologies[_pra].embargoTarget = -1>>
+					<<set $arcologies[_pra].influenceTarget = -1>>
+					<<set $arcologies[_pra].rival = 0>>
+					<<set $arcologies[_pra].government = "direct democracy">>
+					<<if _rivalCaptured == 1 && $arcologies[_pra].FSSupremacist > 20>><<set $rivalRace = $arcologies[_pra].FSSupremacistRace>><</if>>
+					<<break>>
+				<</if>>
+			<</for>>
 		<</if>>
 
 	<<if $hostageAnnounced == 1>>
diff --git a/src/uncategorized/pRivalryVictory.tw b/src/uncategorized/pRivalryVictory.tw
index 71a7954aaa3f2536c7ba98caf9175310f07b0340..06502fef1734426abb70f54205769f7876720ae0 100644
--- a/src/uncategorized/pRivalryVictory.tw
+++ b/src/uncategorized/pRivalryVictory.tw
@@ -19,16 +19,16 @@ For the first time, you receive a direct call from your rival. You pictured the
 	<<if $rivalSet != 0>>
 		<<if _num < $seeDicks>>His<<else>>Her<</if>> remaining liquid assets will go to satisfy her great debts, <<if _num < $seeDicks>>his<<else>>her<</if>> @@.yellowgreen;arcology holdings are yours.@@
 		<<for _prv = 0; _prv < $arcologies.length; _prv++>>
-		<<if $arcologies[_prv].rival == 1>>
-		  <<set $arcologies[_prv].embargo = 0>>
-		  <<set $arcologies[_prv].embargoTarget = -1>>
-		  <<set $arcologies[_prv].influenceTarget = -1>>
-		  <<set $arcologies[_prv].rival = 0>>
-		  <<set $arcologies[_prv].government = "direct democracy">>
-		  <<set $arcologies[_prv].PCminority += $arcologies[_prv].ownership>>
-		  <<set $arcologies[_prv].PCminority = Math.clamp($arcologies[_prv].PCminority, 0, 49)>>
-		  <<break>>
-		<</if>>
+			<<if $arcologies[_prv].rival == 1>>
+				<<set $arcologies[_prv].embargo = 0>>
+				<<set $arcologies[_prv].embargoTarget = -1>>
+				<<set $arcologies[_prv].influenceTarget = -1>>
+				<<set $arcologies[_prv].rival = 0>>
+				<<set $arcologies[_prv].government = "direct democracy">>
+				<<set $arcologies[_prv].PCminority += $arcologies[_prv].ownership>>
+				<<set $arcologies[_prv].PCminority = Math.clamp($arcologies[_prv].PCminority, 0, 49)>>
+				<<break>>
+			<</if>>
 		<</for>>
 		<<if $hostageAnnounced == 1>><<set $hostageRescued = 1>><</if>>
 	<<else>>
@@ -44,14 +44,14 @@ For the first time, you receive a direct call from your rival. You pictured the
 	<<if $rivalSet != 0>>
 		"All my remaining liquid assets have just been @@.red;carefully dispersed to deny you control of my arcology.@@ You'll get nothing from me." It's true. The financial self-destruction ensures that the fiscal wreckage goes to the arcology's citizens, not you.
 		<<for _prv = 0; _prv < $arcologies.length; _prv++>>
-		<<if $arcologies[_prv].rival == 1>>
-		  <<set $arcologies[_prv].embargo = 0>>
-		  <<set $arcologies[_prv].embargoTarget = -1>>
-		  <<set $arcologies[_prv].influenceTarget = -1>>
-		  <<set $arcologies[_prv].rival = 0>>
-		  <<set $arcologies[_prv].government = "direct democracy">>
-		  <<break>>
-		<</if>>
+			<<if $arcologies[_prv].rival == 1>>
+				<<set $arcologies[_prv].embargo = 0>>
+				<<set $arcologies[_prv].embargoTarget = -1>>
+				<<set $arcologies[_prv].influenceTarget = -1>>
+				<<set $arcologies[_prv].rival = 0>>
+				<<set $arcologies[_prv].government = "direct democracy">>
+				<<break>>
+			<</if>>
 		<</for>>
 		<<if $hostageAnnounced == 1>>
 			<br><br>
@@ -100,15 +100,15 @@ For the first time, you receive a direct call from your rival. You pictured the
 	<<if $rivalSet != 0>>
 		"All my remaining liquid assets have just been @@.red;carefully dispersed to deny you control of my arcology.@@ You'll get nothing from me." It's true. The financial self-destruction ensures that the fiscal wreckage goes to the arcology's citizens, not you.
 		<<for _prv = 0; _prv < $arcologies.length; _prv++>>
-		<<if $arcologies[_prv].rival == 1>>
-		  <<set $arcologies[_prv].embargo = 0>>
-		  <<set $arcologies[_prv].embargoTarget = -1>>
-		  <<set $arcologies[_prv].influenceTarget = -1>>
-		  <<set $arcologies[_prv].rival = 0>>
-		  <<set $arcologies[_prv].government = "direct democracy">>
-		  <<if $arcologies[_prv].FSSupremacist > 20>><<set $rivalRace = $arcologies[_prv].FSSupremacistRace>><</if>>
-		  <<break>>
-		<</if>>
+			<<if $arcologies[_prv].rival == 1>>
+				<<set $arcologies[_prv].embargo = 0>>
+				<<set $arcologies[_prv].embargoTarget = -1>>
+				<<set $arcologies[_prv].influenceTarget = -1>>
+				<<set $arcologies[_prv].rival = 0>>
+				<<set $arcologies[_prv].government = "direct democracy">>
+				<<if $arcologies[_prv].FSSupremacist > 20>><<set $rivalRace = $arcologies[_prv].FSSupremacistRace>><</if>>
+				<<break>>
+			<</if>>
 		<</for>>
 		<<if $hostageAnnounced == 1>>
 			<br><br>
diff --git a/src/uncategorized/randomNonindividualEvent.tw b/src/uncategorized/randomNonindividualEvent.tw
index 8d996d58461efc20f8aa17835026f4c13e3ca53b..d7ef0a2ec988e644ff1bd2b5cba2a5aa73d09b1d 100644
--- a/src/uncategorized/randomNonindividualEvent.tw
+++ b/src/uncategorized/randomNonindividualEvent.tw
@@ -8,11 +8,8 @@
 		''Any one of your slaves would have been selected for a random non-individual event:''
 		<br>
 		<<for $i = 0; $i < $slaves.length; $i++>>
-			<<capture $i>>
-			<<set $eventSlave = getSlave($eligibleSlaves[$i])>>
-			<<set _slaveName = SlaveFullName($eventSlave)>>
-			<br><<print "[[_slaveName|Random Nonindividual Event][$eventSlave = getSlave($eligibleSlaves[$i])]]">>
-			<</capture>>
+			<<set _slaveName = SlaveFullName($slaves[$i])>>
+			<br><<print "[[_slaveName|Random Nonindividual Event][$eventSlave = $slaves[" + $i + "]]]">>
 		<</for>>
 		<br><br>[[Switch to RIE Eligibility Check|RIE Eligibility Check][$activeSlave = 0, $eventSlave = 0]]
 	<<else>>
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index c97e67e61e2b97de8b1ca6d40f79bc9479baca48..51168ffc16452ee199a8d666a2d263f6ac8d6110 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -1434,7 +1434,7 @@ Work on $him structurally:
 		<</if>>
 	<<elseif $activeSlave.PLimb != 1 && $activeSlave.amp == 1>>
 		<<if ($activeSlave.indentureRestrictions < 1) && ($seeExtreme == 1)>>
-			[[Implant prosthetic interface|Surgery Degradation][$activeSlave.PLimb = 1,$cash -= $surgeryCost,$activeSlave.health -= 20,$surgeryType = "prostheticInterface"]] //This will allow $his to use prosthetic limbs//
+			[[Implant prosthetic interface|Surgery Degradation][$activeSlave.PLimb = 1,$cash -= $surgeryCost,$activeSlave.health -= 20,$surgeryType = "prostheticInterface"]] //This will allow $him to use prosthetic limbs//
 		<</if>>
 	<</if>>
 <<else>>
@@ -1672,7 +1672,7 @@ Work on $him structurally:
 		[[Encase in a Fuckdoll suit|Surgery Degradation][$activeSlave.subTarget=0, $activeSlave.sentence=0, $activeSlave.training=0, $activeSlave.toyHole="all her holes", $activeSlave.pubicHStyle="waxed", $activeSlave.livingRules="spare", $activeSlave.speechRules="restrictive", $activeSlave.releaseRules="restrictive", $activeSlave.relationshipRules="restrictive", $activeSlave.fuckdoll=1, $activeSlave.choosesOwnClothes=0, $activeSlave.clothes="a Fuckdoll suit", $activeSlave.collar="none", $activeSlave.shoes="heels",$activeSlave.legAccessory="none", $activeSlave.vaginalAccessory="none", $activeSlave.dickAccessory="none", $activeSlave.buttplug="none", $activeSlave.attrKnown=1, $activeSlave.fetishKnown=1, $activeSlave.inflation=0, $activeSlave.inflationType="none", $activeSlave.inflationMethod=0, $activeSlave.milkSource=0, $activeSlave.cumSource=0, $surgeryType = "fuckdoll"]] //This will greatly restrict $him//
 	<</if>>
 <<else>>
-	<br>$He is encased in a Fuckdoll suit. [[Extract " + $him + ""|Surgery Degradation][$activeSlave.fuckdoll=0, $activeSlave.clothes="no clothing", $activeSlave.shoes="none", $surgeryType = "fuckdollExtraction"]]
+	<br>$He is encased in a Fuckdoll suit. [[Extract " + $him + "|Surgery Degradation][$activeSlave.fuckdoll=0, $activeSlave.clothes="no clothing", $activeSlave.shoes="none", $surgeryType = "fuckdollExtraction"]]
 <</if>>
 <</if>>
 
diff --git a/src/uncategorized/saChoosesOwnJob.tw b/src/uncategorized/saChoosesOwnJob.tw
index 69f6e10f2a2e7b2a36e307a43bfd54891e5b8849..0c252f9029f2df739a61954d6e06305e378cb07f 100644
--- a/src/uncategorized/saChoosesOwnJob.tw
+++ b/src/uncategorized/saChoosesOwnJob.tw
@@ -50,7 +50,7 @@
 			<<= assignJob($slaves[$i], "be a servant")>>
 		<</if>>
 
-	<<elseif $universalRulesAssignsSelfFacility == 1 && $slaves[$i].devotion > 50 && canWalk($slaves[$i]) && canSee($slaves[$i]) && && $slaves[$i].sexualQuirk == "caring" && $nurseryNannies > $nurserySlaves>>
+	<<elseif $universalRulesAssignsSelfFacility == 1 && $slaves[$i].devotion > 50 && canWalk($slaves[$i]) && canSee($slaves[$i]) && $slaves[$i].sexualQuirk == "caring" && $nurseryNannies > $nurserySlaves>>
 		<<set $slaves[$i].choosesOwnAssignmentText += " enjoys taking care of children, so $he decides to work in $nurseryName.">>
 		<<= assignJob($slaves[$i], "work as a nanny")>>
 
diff --git a/src/uncategorized/saDiet.tw b/src/uncategorized/saDiet.tw
index 7cde19c40ec3cb5fa9abdbcb947d5b1f0ad1250d..4da1b7854b534491ef2f72314dd37bde10f58a68 100644
--- a/src/uncategorized/saDiet.tw
+++ b/src/uncategorized/saDiet.tw
@@ -550,7 +550,7 @@
 				$His balls @@.orange;shrink down@@ due to $his body chemistry.
 				<<set $slaves[$i].balls -= 1>>
 			<<else>>
-				$His balls @@.orange;shrivel@@ $his to $his body chemistry.
+				$His balls @@.orange;shrivel@@ due to $his body chemistry.
 			<</if>>
 			<<set $slaves[$i].balls -= 1>>
 		<</if>>
@@ -610,7 +610,7 @@
 				$His balls @@.orange;shrink down@@ due to $his body chemistry.
 				<<set $slaves[$i].balls -= 1>>
 			<<else>>
-				$His balls @@.orange;shrivel@@ $his to $his body chemistry.
+				$His balls @@.orange;shrivel@@ due to $his body chemistry.
 			<</if>>
 			<<set $slaves[$i].balls -= 1>>
 		<</if>>
diff --git a/src/uncategorized/saGuardsYou.tw b/src/uncategorized/saGuardsYou.tw
index 35f0b16ab67055ac20c50cb3151014e297f4669c..71fdc6fce98dd11b510a6c4e100ec7068c25452c 100644
--- a/src/uncategorized/saGuardsYou.tw
+++ b/src/uncategorized/saGuardsYou.tw
@@ -169,7 +169,7 @@ $His constant presence is
 
 <<set $repGain += $deadliness*10>>
 
-Being continually trusted with your life @@.hotpink;increases $his devotion to you@@ and encourages $his to @@.mediumaquamarine;trust you in turn.@@
+Being continually trusted with your life @@.hotpink;increases $his devotion to you@@ and encourages $him to @@.mediumaquamarine;trust you in turn.@@
 	<<set $slaves[$i].devotion += 2>>
 	<<set $slaves[$i].trust += 4>>
 
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index 125162413d54bc88d2b48e61cf2a50a2ee4304b4..29ec9e110d31f1ce6aaffc3ea055352afc9e0bc3 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -335,7 +335,7 @@
 							$He can't see a woman without plotting to dominate $him. $He's now @@.green;more aroused by women.@@
 							<<set $slaves[$i].attrXX += 3>>
 						<<elseif ($slaves[$i].fetish == "sadist")>>
-							$He can't see a woman without doing $his best to find a way the rules will allow $his to abuse the poor girl. $He's now @@.green;more aroused by women.@@
+							$He can't see a woman without doing $his best to find a way the rules will allow $him to abuse the poor girl. $He's now @@.green;more aroused by women.@@
 							<<set $slaves[$i].attrXX += 3>>
 						<<elseif ($slaves[$i].fetish == "boobs")>>
 							$He can't see a woman without doing $his best to get $his hands on $his breasts. $He's now @@.green;more aroused by women.@@
@@ -3619,7 +3619,7 @@
 	<<if $slaves[$i].fetish != "mindbroken" && $slaves[$i].fuckdoll == 0>>
 		<<if $slaves[$i].bellyFluid >= 10000>>
 			<<if $slaves[$i].fetish != "masochist" && $slaves[$i].sexualFlaw != "hates self">>
-				Being so distended with fluids is @@.mediumorchid;very uncomfortable@@ to $his.
+				Being so distended with fluids is @@.mediumorchid;very uncomfortable@@ to $him.
 				<<set $slaves[$i].devotion -= 3>>
 			<</if>>
 			<<if ($slaves[$i].fetish == "none") && (_fetishChangeChance > random(0,100))>>
@@ -5320,7 +5320,7 @@
 			<</if>>
 		<<else>>
 			<<if $slaves[$i].balls > 2>>
-				$His balls have been relocated to $his abdomen, and while they still work there, it's not where they're designed to be. Routine scans show that @@.orange;they've atrophied,@@ <<if $slaves[$i].balls > 3>>and will probably continue to do so until they stabilise at a below-average size<<else>>but are not likely to get any smaller<</if>>.
+				$His balls have been relocated to $his abdomen, and while they still work there, it's not where they're designed to be. Routine scans show that @@.orange;they've atrophied,@@ <<if $slaves[$i].balls > 3>>and will probably continue to do so until they stabilize at a below-average size<<else>>but are not likely to get any smaller<</if>>.
 				<<set $slaves[$i].balls -= 1>>
 			<</if>>
 		<</if>>
diff --git a/src/uncategorized/seCoursingRace.tw b/src/uncategorized/seCoursingRace.tw
index 235423522e37b85bde29fb7cc8c58dde50e9ad7a..04657c8a3d58a4526e2c70d723d19173f27190a3 100644
--- a/src/uncategorized/seCoursingRace.tw
+++ b/src/uncategorized/seCoursingRace.tw
@@ -33,7 +33,7 @@ You place your hand on the leash's quick release and <<if canHear($Lurcher)>>whi
 	$He's so fat that $his run is nothing more than an out of breath waddle.
 	<<set _LurcherSpeed -= 5>>
 <<elseif $Lurcher.weight > 160>>
-	It takes $him a while to get $his fat ass up to $his, rather pathetic, top speed, such as it is.
+	It takes $him a while to get $his fat ass up to $his (rather pathetic) top speed, such as it is.
 	<<set _LurcherSpeed -= 3>>
 <<elseif $Lurcher.weight > 95>>
 	It takes $him a while to get $his fat ass up to $his top speed, such as it is.
diff --git a/src/uncategorized/seLethalPit.tw b/src/uncategorized/seLethalPit.tw
index ae85c439d8d029d50681d100fc71e3e0c60b8607..9bbce1742c0a42b5120301ed76d5e45c3aecd438 100644
--- a/src/uncategorized/seLethalPit.tw
+++ b/src/uncategorized/seLethalPit.tw
@@ -505,7 +505,7 @@ In any case, <<if $pitAnimal == 0>>both of the slaves have<<else>>the slave and
 			<<set $rep += 100>>
 		<</if>>
 	<<elseif (_loser.boobs > 1200)>>
-		_winner.slaveName takes an extremely simple shortcut to victory. The instant the fight starts, she slices _loser.slaveName right across her huge tits, which are so large they cannot properly be defended. _loser.slaveName reflexively drops her sword to clasp her hands over her ruined breasts, gushing blood<<if _loser.boobsImplant > 400>> and implant fluid<</if>>. _winner.slaveName's followup is neither artful nor particularly well planned, but it is effective. She hits the distracted girl's neck from the side, almost but not quite separating her head from her body.
+		_winner.slaveName takes an extremely simple shortcut to victory. The instant the fight starts, she slices _loser.slaveName right across her huge tits, which are so large they cannot properly be defended. _loser.slaveName reflexively drops her sword to clasp her hands over her 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. She hits the distracted girl's neck from the side, almost but not quite separating her head from her body.
 		<<if $pitAudience == "paid">>
 			The audience is not very impressed by this easy kill, and your @@.yellowgreen;cut of the betting@@ is unimpressive.
 			<<set $cash += 2000>>
diff --git a/src/uncategorized/surgeryDegradation.tw b/src/uncategorized/surgeryDegradation.tw
index 717ccc5d39df51d7e876a972d61941913bd07970..92cedfac339f9e5c4737515f6b6bfe618f34d2df 100644
--- a/src/uncategorized/surgeryDegradation.tw
+++ b/src/uncategorized/surgeryDegradation.tw
@@ -1941,10 +1941,10 @@ As the remote surgery's long recovery cycle completes,
 		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman -- at least, that's what $he believes. Little does $he know that $he is now capable of carrying animal babies in $his womb. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman -- at least, that's what $he believes. Little does $he know that $he is now capable of carrying animal babies in $his womb. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman -- at least, that's what $he believes. Little does $he know that $he is now capable of carrying animal babies in $his womb. $He is @@.gold;terrified@@ of your apparently untrammeled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
 	<<else>>
-		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman -- at least, that's what $he believes. Little does $he know that $he is now capable of carrying animal babies in $his womb. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, and @@.mediumorchid;furious@@ at $his lack of control over $his own person. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He leaves the surgery with nothing but a nonspecific ache in $his lower abdomen, but $he has managed to catch enough slave rumors about what the fabricator can do to know that it means $he is now internally indistinguishable from a natural, unaltered woman -- at least, that's what $he believes. Little does $he know that $he is now capable of carrying animal babies in $his womb. $He is @@.gold;terrified@@ of your apparently untrammeled power over $his body, and @@.mediumorchid;furious@@ at $his lack of control over $his own person. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
@@ -2021,15 +2021,15 @@ As the remote surgery's long recovery cycle completes,
 /* TODO: this will need a rewrite */
 <<case "addAnimalBalls">>
 	<<if $activeSlave.fetish == "mindbroken">>
-		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to $his lower half. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, $he struggles to understand what just happened. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anesthetics lifts and feeling returns to $his lower half. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, $he struggles to understand what just happened. As with all surgery @@.red;$his health has been slightly affected.@@
 	<<elseif ($activeSlave.devotion > 50)>>
-		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to $his lower half. As a devoted slave, $he knew the essentials of the surgery before it was performed, so $he's excited to <<if canSee($activeSlave)>>see<<else>>feel<</if>> the result. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, $he begins to giggle. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anesthetics lifts and feeling returns to $his lower half. As a devoted slave, $he knew the essentials of the surgery before it was performed, so $he's excited to <<if canSee($activeSlave)>>see<<else>>feel<</if>> the result. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, $he begins to giggle. $He is @@.mediumaquamarine;tremendously impressed@@ that you would devote such immense resources to altering $his body, and is more willing than ever to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.trust += 5, $activeSlave.devotion += 5>>
 	<<elseif ($activeSlave.devotion >= -20)>>
-		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anaesthetics lifts and feeling returns to $his lower half. $He cannot quite feel what has happened to $him yet, but $he does not have long to wait. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, the rush of new hormones clashes with $his already roiling emotions, and $he begins to sob. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
+		$He lies back in the surgical chair<<if canSee($activeSlave)>>, gazing at $himself in the ceiling mirror<</if>> as the fog of anesthetics lifts and feeling returns to $his lower half. $He cannot quite feel what has happened to $him yet, but $he does not have long to wait. $His new testicles are small, and $his scrotum is scarcely visible under $his dick, but its impact becomes immediately clear. $He slowly achieves an excruciatingly painful erection, panting with the pain as $his very sore member becomes hard. The terrible overstimulation brings a spurt of cum jetting out of $his cockhead. As the agony melts away, the rush of new hormones clashes with $his already roiling emotions, and $he begins to sob. $He is @@.gold;terrified@@ of your apparently untrammeled power over $his body, so much so that $he is now more willing to @@.hotpink;submit to your plans@@ for $his future. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.trust -= 5, $activeSlave.devotion += 5>>
 	<<else>>
-		The autosurgery allows $him to recover for a while. Once it's safe, though, it's time to test the function of $his new organs by seeing if they permit $him to achieve erection. The surgery slowly inserts a dildo into $his anus; the slave is so fuzzy from the surgery and accompanying drugs that it takes a while for the machine assfuck to register. Gradually, though, $his new dick becomes hard. Horrified, $he cannot take $his <<if canSee($activeSlave)>>eyes off $his own reflection in the ceiling mirror<<else>>mind off $his soft cock<</if>> as it bobs and waves with the sodomy. A delayed reaction sets in as the soreness of surgical recovery competes with the stimulation: <<if $activeSlave.voice == 0>>$he tries to scream, but only manages to gasp repeatedly<<else>>$he howls with pain and terror<</if>> as the dildo forces a weak prostate orgasm. $He is @@.gold;terrified@@ of your apparently untrammelled power over $his body, and @@.mediumorchid;furious@@ at $his lack of control over $his own person. As with all surgery @@.red;$his health has been slightly affected.@@
+		The autosurgery allows $him to recover for a while. Once it's safe, though, it's time to test the function of $his new organs by seeing if they permit $him to achieve erection. The surgery slowly inserts a dildo into $his anus; the slave is so fuzzy from the surgery and accompanying drugs that it takes a while for the machine assfuck to register. Gradually, though, $his new dick becomes hard. Horrified, $he cannot take $his <<if canSee($activeSlave)>>eyes off $his own reflection in the ceiling mirror<<else>>mind off $his soft cock<</if>> as it bobs and waves with the sodomy. A delayed reaction sets in as the soreness of surgical recovery competes with the stimulation: <<if $activeSlave.voice == 0>>$he tries to scream, but only manages to gasp repeatedly<<else>>$he howls with pain and terror<</if>> as the dildo forces a weak prostate orgasm. $He is @@.gold;terrified@@ of your apparently untrammeled power over $his body, and @@.mediumorchid;furious@@ at $his lack of control over $his own person. As with all surgery @@.red;$his health has been slightly affected.@@
 		<<set $activeSlave.trust -= 5, $activeSlave.devotion -= 5>>
 	<</if>>
 
diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw
index 7aa6891fe5eb2fb3f63190dfe8b2a34a8b854b45..46be868a0d0d2992a9ec8f45636b04fe46668aad 100644
--- a/src/uncategorized/walkPast.tw
+++ b/src/uncategorized/walkPast.tw
@@ -738,7 +738,7 @@
 	<<case "a chattel habit">>
 		$His chattel habit leaves $his <<if $activeSlave.boobs < 300>>flat <</if>>tits virtuously bare.
 	<<case "a penitent nuns habit">>
-		$His habit chafes $his nipples so harshly that it would probably be a relief to $his to have it stripped off $him.
+		$His habit chafes $his nipples so harshly that it would probably be a relief to $him to have it stripped off $him.
 	<<case "a comfortable bodysuit">>
 		$His bodysuit is tight enough to show off <<if $activeSlave.boobs < 300>>just how flat $he is<<else>>every contour of $his chest<</if>>.
 	<<case "a latex catsuit">>
diff --git a/src/uncategorized/wardenessWorkaround.tw b/src/uncategorized/wardenessWorkaround.tw
index b587730ba718762939ebe99b8f1d2e7e2329fd3e..954e4f63ab66615fd1703ea25a0d5aa74fa56dff 100644
--- a/src/uncategorized/wardenessWorkaround.tw
+++ b/src/uncategorized/wardenessWorkaround.tw
@@ -10,4 +10,3 @@
 <</if>>
 
 <<goto "Cellblock">>
-
diff --git a/src/uncategorized/wardrobeUse.tw b/src/uncategorized/wardrobeUse.tw
index d26ab82df6afc5285cb721c4e4c19c1c7bfe9dba..7f482be7e7bf8fb6e1be9f45da17304e23690305 100644
--- a/src/uncategorized/wardrobeUse.tw
+++ b/src/uncategorized/wardrobeUse.tw
@@ -742,7 +742,7 @@ Clothes: ''<span id="clothes">$activeSlave.clothes</span>.''
 		<<set _clothingBaseColor = $activeSlave.clothingBaseColor>>
 	<</if>>
 	/* Display an HTML5 color picker */
-	/* This is hackish due to direct accessment of SugarCube internal data structure. Improvements are welcome. */
+	/* This is hackish due to direct access of SugarCube internal data structure. Improvements are welcome. */
 	<<print '<input type="color" value="'+_clothingBaseColor+'" onInput="SugarCube.State.variables.activeSlave.clothingBaseColor = event.target.value;">'>>
 	<<link "use default color">>
 		<<run delete $activeSlave.clothingBaseColor >>
diff --git a/src/utility/descriptionWidgetsPiercings.tw b/src/utility/descriptionWidgetsPiercings.tw
index ffc5fe081f4ac61efd02f8318085f31328ee41bd..4fc4809cf595a316dce1d0cfae52a2106f0dd8e9 100644
--- a/src/utility/descriptionWidgetsPiercings.tw
+++ b/src/utility/descriptionWidgetsPiercings.tw
@@ -138,20 +138,20 @@
 <</widget>>
 
 <<widget "nipplesPiercingDescription">>
-<<set _nippleColour = nippleColor($activeSlave)>>
+<<set _nippleColor = nippleColor($activeSlave)>>
 <<if $activeSlave.fuckdoll > 0>>
 	<<if $activeSlave.nipplesPiercing > 0>>
 		Its nipple piercings help secure the suit material to its breasts.
 	<</if>>
 <<else>>
 	<<if $activeSlave.nipplesPiercing == 1>>
-		$His _nippleColour nipples have a simple piercing, which keeps them a little harder than they would normally be.
+		$His _nippleColor nipples have a simple piercing, which keeps them a little harder than they would normally be.
 	<<elseif $activeSlave.nipplesPiercing == 2>>
-		$His _nippleColour nipples are heavily pierced with several rings and studs, and there is a chain between them.
+		$His _nippleColor nipples are heavily pierced with several rings and studs, and there is a chain between them.
 		<<if ($activeSlave.boobShape == "saggy") && ($activeSlave.boobs > 2500)>>
-			It's been shortened to take advantage of the way $his tits sag, and holds $his _nippleColour nipples almost together, producing cleavage that runs from $his _nippleColour nipples all the way up to $his sternum.
+			It's been shortened to take advantage of the way $his tits sag, and holds $his _nippleColor nipples almost together, producing cleavage that runs from $his _nippleColor nipples all the way up to $his sternum.
 		<<else>>
-			The constant tugging keeps $his _nippleColour nipples erect.
+			The constant tugging keeps $his _nippleColor nipples erect.
 		<</if>>
 	<</if>>
 	<<if $activeSlave.nipplesPiercing > 0>>
@@ -210,27 +210,27 @@
 <</widget>>
 
 <<widget "areolaePiercingDescription">>
-	<<set _nippleColour = nippleColor($activeSlave)>>
+	<<set _nippleColor = nippleColor($activeSlave)>>
 	<<if $activeSlave.fuckdoll == 0>>
 		<<if $activeSlave.areolaePiercing > 0>>
 			<<switch $activeSlave.areolae>>
 			<<case 1>>
-				$His areolae form large, lovely circles of _nippleColour skin around each nipple.
+				$His areolae form large, lovely circles of _nippleColor skin around each nipple.
 				$He has stud piercings around their borders, enhancing the contrast.
 			<<case 2>>
-				$His areolae are unusually wide, eye-catching circles of _nippleColour skin around each nipple.
+				$His areolae are unusually wide, eye-catching circles of _nippleColor skin around each nipple.
 				$He has stud piercings around their borders, enhancing the contrast.
 			<<case 3>>
-				$His _nippleColour areolae are unnaturally broad, covering much of the <<if $activeSlave.boobShape == "saggy">>bottom<<else>>front<</if>> of each breast.
-				$He has many stud piercings around their edges, forming a metal border between _nippleColour nipple and breast.
+				$His _nippleColor areolae are unnaturally broad, covering much of the <<if $activeSlave.boobShape == "saggy">>bottom<<else>>front<</if>> of each breast.
+				$He has many stud piercings around their edges, forming a metal border between _nippleColor nipple and breast.
 			<<default>>
-				$He has stud piercings in circles around the edges of $his minimal _nippleColour areolae.
-				$His $activeSlave.nipples nipples are surrounded by a minimal _nippleColour areolae.
+				$He has stud piercings in circles around the edges of $his minimal _nippleColor areolae.
+				$His $activeSlave.nipples nipples are surrounded by a minimal _nippleColor areolae.
 			<</switch>>
 			<<if $activeSlave.areolaeShape == "heart">>
-				$His _nippleColour areolae are heart-shaped, an obvious surgical alteration. Their borders are defined by stud piercings with pink stones.<<if $activeSlave.boobShape == "saggy">> $His motherly boobs point downward, though, leaving only the curved top of each heart visible.<</if>>
+				$His _nippleColor areolae are heart-shaped, an obvious surgical alteration. Their borders are defined by stud piercings with pink stones.<<if $activeSlave.boobShape == "saggy">> $His motherly boobs point downward, though, leaving only the curved top of each heart visible.<</if>>
 			<<elseif $activeSlave.areolaeShape == "star">>
-				$His _nippleColour areolae are star-shaped, an obvious surgical alteration. Their borders are defined by shiny stud piercings.<<if $activeSlave.boobShape == "saggy">> $His motherly boobs point downward, though, leaving only the pointed top of each star visible.<</if>>
+				$His _nippleColor areolae are star-shaped, an obvious surgical alteration. Their borders are defined by shiny stud piercings.<<if $activeSlave.boobShape == "saggy">> $His motherly boobs point downward, though, leaving only the pointed top of each star visible.<</if>>
 			<</if>>
 		<</if>>
 	<</if>>
diff --git a/src/utility/descriptionWidgetsStyle.tw b/src/utility/descriptionWidgetsStyle.tw
index 2ae4be057de0faffc846b46cf5d611986e54bbf3..4ddc212125467bc8d57fb52f695458e65d2b1fa4 100644
--- a/src/utility/descriptionWidgetsStyle.tw
+++ b/src/utility/descriptionWidgetsStyle.tw
@@ -3298,7 +3298,7 @@ $His
 <</widget>>
 
 <<widget "nailsDescription">>
-	 <<if $activeSlave.amp == 1>>
+	<<if $activeSlave.amp == 1>>
 		$He has no hands, and thus, no nails.
 	<<elseif $activeSlave.nails == 1>>
 		$His nails are long and elegant.
@@ -5457,7 +5457,7 @@ $His
 			<<else>>
 				tight
 			<</if>>
-			 butthole.
+			butthole.
 		<</if>>
 	<<case "a cheerleader outfit">>
 		If $he bends over even slightly, the hem of $his skirt rides up to reveal $his
diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw
index 905b29e79fa759c32ad41d69313106692a7fd156..3d9c6baa868d4981a2c820cb4f21cee8b0e6ce54 100644
--- a/src/utility/extendedFamilyWidgets.tw
+++ b/src/utility/extendedFamilyWidgets.tw
@@ -458,61 +458,61 @@
 <</for>>
 <<if $activeSlave.genes == "XY" && $children.length > 0>>
 	$He
-<<if $children.length > 2>>
-	is @@.lightgreen;your nephew along with
-	<<for $j = 0; $j < $children.length; $j++>>
-		<<if $j < $children.length-1>>
-			$children[$j].slaveName,
-		<<else>>
-			 and $children[$j].slaveName.@@
-		<</if>>
-	<</for>>
-<<elseif $children.length > 1>>
-	is @@.lightgreen;your nephew along with $children[0].slaveName.@@
-<<elseif $children.length > 0>>
-<<for $i = 0; $i < $slaves.length; $i++>>
-	<<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XY">>
-	<<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>>
-	<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
-		is @@.lightgreen;your nephew.@@
-	<</if>>
-	<</if>>
+	<<if $children.length > 2>>
+		is @@.lightgreen;your nephew along with
+		<<for $j = 0; $j < $children.length; $j++>>
+			<<if $j < $children.length-1>>
+				$children[$j].slaveName,
+			<<else>>
+				and $children[$j].slaveName.@@
+			<</if>>
+		<</for>>
+	<<elseif $children.length > 1>>
+		is @@.lightgreen;your nephew along with $children[0].slaveName.@@
+	<<elseif $children.length > 0>>
+		<<for $i = 0; $i < $slaves.length; $i++>>
+			<<if $slaves[$i].ID != $activeSlave.ID && $activeSlave.genes == "XY">>
+				<<if areSisters($slaves[$i], $PC) == 1 || areSisters($slaves[$i], $PC) == 2>>
+					<<if $slaves[$i].ID == $activeSlave.mother || $slaves[$i].ID == $activeSlave.father>>
+						is @@.lightgreen;your nephew.@@
+					<</if>>
+				<</if>>
+			<</if>>
+		<</for>>
 	<</if>>
-<</for>>
-<</if>>
 <</if>>
 <<set $children = []>>
 
 /* testtest nephew passage - determines how many nephews a slave has*/
 <<for $i = 0; $i < $slaves.length; $i++>>
 	<<if $slaves[$i].ID != $activeSlave.ID>>
-	<<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>>
-		<<for $j = 0; $j < $slaves.length; $j++>>
-			<<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XY">>
-			<<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>>
-				<<set $children.push($slaves[$j])>>
-			<</if>>
-			<</if>>
-		<</for>>
-	<</if>>
+		<<if areSisters($slaves[$i], $activeSlave) == 1 || areSisters($slaves[$i], $activeSlave) == 2>>
+			<<for $j = 0; $j < $slaves.length; $j++>>
+				<<if $slaves[$i].ID != $slaves[$j].ID && $slaves[$j].ID != $activeSlave.ID && $slaves[$j].genes == "XY">>
+					<<if $slaves[$i].ID == $slaves[$j].mother || $slaves[$i].ID == $slaves[$j].father>>
+						<<set $children.push($slaves[$j])>>
+					<</if>>
+				<</if>>
+			<</for>>
+		<</if>>
 	<</if>>
 <</for>>
 <<if $children.length > 0>>
 	$He
-<<if $children.length > 2>>
-	has @@.lightgreen;many nephews,
-	<<for $j = 0; $j < $children.length; $j++>>
-		<<if $j < $children.length-1>>
-			$children[$j].slaveName,
-		<<else>>
-			and $children[$j].slaveName, who are your slaves.@@
-		<</if>>
-	<</for>>
-<<elseif $children.length > 1>>
-	has @@.lightgreen;two nephews, $children[0].slaveName, and $children[1].slaveName, who are your slaves.@@
-<<elseif $children.length > 0>>
-	has @@.lightgreen;a nephew, $children[0].slaveName, who is your slave.@@
-<</if>>
+	<<if $children.length > 2>>
+		has @@.lightgreen;many nephews,
+		<<for $j = 0; $j < $children.length; $j++>>
+			<<if $j < $children.length-1>>
+				$children[$j].slaveName,
+			<<else>>
+				and $children[$j].slaveName, who are your slaves.@@
+			<</if>>
+		<</for>>
+	<<elseif $children.length > 1>>
+		has @@.lightgreen;two nephews, $children[0].slaveName, and $children[1].slaveName, who are your slaves.@@
+	<<elseif $children.length > 0>>
+		has @@.lightgreen;a nephew, $children[0].slaveName, who is your slave.@@
+	<</if>>
 <</if>>
 <<set $children = []>>
 
@@ -541,20 +541,20 @@
 		<</if>>
 	<</for>>
 	$He
-<<if $children.length > 1>>
-	@@.lightgreen;is _rel_desc _rel_type along with
-	<<for $j = 0; $j < $children.length; $j++>>
-		<<if $j < $children.length-1>>
-			$children[$j].slaveName,
-		<<else>>
-			and $children[$j].slaveName.@@
-		<</if>>
-	<</for>>
-<<elseif $children.length > 0>>
-	is @@.lightgreen;_rel_desc _rel_type with $children[0].slaveName.@@
-<<else>>
-	is @@.lightgreen;_rel_desc _rel_type.@@
-<</if>>
+	<<if $children.length > 1>>
+		@@.lightgreen;is _rel_desc _rel_type along with
+		<<for $j = 0; $j < $children.length; $j++>>
+			<<if $j < $children.length-1>>
+				$children[$j].slaveName,
+			<<else>>
+				and $children[$j].slaveName.@@
+			<</if>>
+		<</for>>
+	<<elseif $children.length > 0>>
+		is @@.lightgreen;_rel_desc _rel_type with $children[0].slaveName.@@
+	<<else>>
+		is @@.lightgreen;_rel_desc _rel_type.@@
+	<</if>>
 <</if>>
 <<set $children = []>>
 */
@@ -719,9 +719,9 @@
 	<</if>>
 <</if>>
 <<for $i = 0; $i < $slaves.length; $i++>>
-<<if $slaves[$i].ID == $PC.father || $slaves[$i].ID == $PC.mother>>
-	<<set $children.push($slaves[$i])>>
-<</if>>
+	<<if $slaves[$i].ID == $PC.father || $slaves[$i].ID == $PC.mother>>
+		<<set $children.push($slaves[$i])>>
+	<</if>>
 <</for>>
 <<if $children.length > 1>>
 	<br>Your parents are @@.lightgreen;<<if $children[0].ID < 0>>your former slave<<if $children[1].ID < 0>>s<</if>><</if>> $children[0].slaveName and <<if $children[1].ID < 0 && $children[0].ID > 0>>your former slave<</if>> $children[1].slaveName@@.
@@ -815,12 +815,12 @@
 /*Half-Sister Test with aresisters */
 <<for $i = 0; $i < $slaves.length; $i++>>
 	<<if $slaves[$i].ID != $PC.ID>>
-	<<if areSisters($slaves[$i], $PC) == 3 && areSisters($PC, $slaves[$i]) == 3>>
-		<<if $slaves[$i].genes == "XX">>
-			<<set $children.push($slaves[$i])>>
+		<<if areSisters($slaves[$i], $PC) == 3 && areSisters($PC, $slaves[$i]) == 3>>
+			<<if $slaves[$i].genes == "XX">>
+				<<set $children.push($slaves[$i])>>
+			<</if>>
 		<</if>>
 	<</if>>
-<</if>>
 <</for>>
 <<if $children.length > 2>>
 	<br>@@.lightgreen;
@@ -842,12 +842,12 @@
 /*Half-Brother Test with aresisters */
 <<for $i = 0; $i < $slaves.length; $i++>>
 	<<if $slaves[$i].ID != $PC.ID>>
-	<<if areSisters($slaves[$i], $PC) == 3 && areSisters($PC, $slaves[$i]) == 3>>
-		<<if $slaves[$i].genes == "XY">>
-			<<set $children.push($slaves[$i])>>
+		<<if areSisters($slaves[$i], $PC) == 3 && areSisters($PC, $slaves[$i]) == 3>>
+			<<if $slaves[$i].genes == "XY">>
+				<<set $children.push($slaves[$i])>>
+			<</if>>
 		<</if>>
 	<</if>>
-<</if>>
 <</for>>
 <<if $children.length > 2>>
 	<br>@@.lightgreen;
@@ -1162,7 +1162,7 @@
 <</link>>
 <<if $activeSlave.dick > 0>>
 	<<if ($activeSlave.actualAge - $PC.actualAge) >= $fertilityAge && $saveImported == 0>>
-		| 
+		|
 		<<link "You">>
 			<<set $PC.father = $activeSlave.ID>>
 			<<redisplayFamily>>
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 0152dc87a554fd8abc6c8b09755ef2015587f43b..f7c9e1d51a000144aa349585f7b2e223d40549fa 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -690,7 +690,7 @@
 <<widget "Sh">>$ShEnunciate<</widget>>
 <<widget "x">>$xEnunciate<</widget>>
 
-/* 
+/*
 	If $args[0] is defined, it is assumed the primary slave is speaking about secondary slave. Else, the secondary slave is speaking about primary slave.
 	This means that <<he>> will print _heLisp or $he, and <<he 2>> will print _he2Lisp or _he2.
 	Pronouns must be set for both slaves, and <<setSpokenLocalPronouns primarySlave secondarySlave>> must be previously called.
diff --git a/src/utility/optionsWidgets.tw b/src/utility/optionsWidgets.tw
index 19255fab93aadbe2d68add45bfa7e38f76dab3c1..e536ed037da04626f8c253e7387e16e9234c33cd 100644
--- a/src/utility/optionsWidgets.tw
+++ b/src/utility/optionsWidgets.tw
@@ -466,7 +466,7 @@ Hormone balance is
 		<</replace>>
 	<</link>>
 <<elseif $abbreviateHormoneBalance == 2>>
-	@@.cyan;SUMMARIZED.@@  
+	@@.cyan;SUMMARIZED.@@
 	<<link 'Hide'>>
 		<<set $abbreviateHormoneBalance = 0>>
 		<<replace '#OptionAbbreviateHormoneBalance'>>
diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index 5e022fc7ec2f6e278eaad58c9a50296607efed67..4f1ec312804b144e254e2ea1166855cf30086a93 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -22,12 +22,12 @@
 	<<set $activeSlave.behavioralQuirk = "none">>
 	<<set $activeSlave.fetishKnown = 1>>
 	<<if $activeSlave.vagina < 0>>
-	<<set $activeSlave.ovaries = 0>>
+		<<set $activeSlave.ovaries = 0>>
 	<<elseif $activeSlave.vagina < 1>>
-	<<set $activeSlave.vaginalSkill = 0>>
+		<<set $activeSlave.vaginalSkill = 0>>
 	<</if>>
 	<<if $activeSlave.anus < 1>>
-	<<set $activeSlave.analSkill = 0>>
+		<<set $activeSlave.analSkill = 0>>
 	<</if>>
 
 	<<set $activeSlave.actualAge = Number($activeSlave.actualAge) || 18>>