From fef7bfb764101d8db4df80f8a14b20c87739110e Mon Sep 17 00:00:00 2001
From: klorpa <30924131+klorpa@users.noreply.github.com>
Date: Tue, 8 Jan 2019 21:19:26 -0600
Subject: [PATCH] Commit Message

---
 devNotes/twine JS.txt                         |  32 ++---
 .../industrialDairyAssignmentScene.tw         |   1 +
 src/uncategorized/pPeacekeepersInfluence.tw   | 118 +++++++++---------
 3 files changed, 76 insertions(+), 75 deletions(-)

diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 265e09389ae..3416cb53adb 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -1364,7 +1364,7 @@ window.areSisters = function(c1, c2) {
 	var sib = 4;
 	if(sameMom(c1, c2)) {
 		sib -= 1;
-	} 
+	}
 	if(sameDad(c1, c2)) {
 		sib -=1;
 	}
@@ -1400,8 +1400,8 @@ window.totalRelatives = function(slave) {
 	return relatives
 };
 
-window.mutualChildren = function(slave1, slave2, slaves) { 
-	return slaves.filter(function(s) { return s.ID != slave1.ID && s.ID != slave2.ID && s.mother > 0 && s.father > 0 && ((s.mother == slave1.ID && s.father == slave2.ID) || (s.mother == slave2.ID && s.father == slave1.ID)); }).length; 
+window.mutualChildren = function(slave1, slave2, slaves) {
+	return slaves.filter(function(s) { return s.ID != slave1.ID && s.ID != slave2.ID && s.mother > 0 && s.father > 0 && ((s.mother == slave1.ID && s.father == slave2.ID) || (s.mother == slave2.ID && s.father == slave1.ID)); }).length;
 }
 
 window.isSlaveAvailable = function(slave) {
@@ -1652,7 +1652,7 @@ window.setPregType = function(actor) {
 		} else if(actor.pregType == 0) {
 			ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); //base chance for twins
 			if(actor.ovaImplant == "fertility") {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); 
+				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
 				fertilityStack++;
 			}
 			if(actor.hormones == 2) {
@@ -1850,7 +1850,7 @@ window.getBaseBoobs = function(slave) {
 
 window.SetBellySize = function SetBellySize(slave) {
 	let _implantSize;
-	WombNormalizePreg(slave); /*now with support for legacy code that advance pregnancy by setting .preg++ */ 
+	WombNormalizePreg(slave); /*now with support for legacy code that advance pregnancy by setting .preg++ */
 
 	if (slave.bellyImplant > 0)
 		_implantSize = slave.bellyImplant;
@@ -1871,11 +1871,11 @@ window.SetBellySize = function SetBellySize(slave) {
 
 /*:: rbuttonJS [script]*/
 /* This is modified radiobutton macro, for automatic checked state setup*/
-/* Usage (be sure to use quotes around parameters): 
+/* Usage (be sure to use quotes around parameters):
 
 	<<rbutton "$variable" "value">>
 Or:
-	<<rbutton "$variable" "value" "HTML_element_ID" "Text to replace with, inside html element with ID from previous parameter. <br> HTML tags allowed.">> 
+	<<rbutton "$variable" "value" "HTML_element_ID" "Text to replace with, inside html element with ID from previous parameter. <br> HTML tags allowed.">>
 
 Group of radiobutton will be created based on variable name. Checked state will be set up if variable contain value matched with second parameter. Full form of macro call can be used to display extended description of selected value.
 */
@@ -2015,13 +2015,13 @@ window.setTextboxMaxLength = function (storyVarName, maxLength) {
  * with other scripts, since anything poking the DOM here will be done last
  *
  * Dev Note: The accordion mod should be able to turn *anything* into an accordion. This iteration
- * is configured tightly for the end of week report runs, but it shouldn't be that hard to adapt for 
+ * is configured tightly for the end of week report runs, but it shouldn't be that hard to adapt for
  * other uses, like character bios. For now, I'll see what other extra-long passages of cosmetic text
  * might benefit.
  *
  * 000-250-006 03092017
 */
- 
+
 postdisplay["doAccordionSet"] = function (content) {
 	if (variables().useAccordion == 1) {
 		Array.prototype.slice.call(document.querySelectorAll('.macro-include'))
@@ -14367,7 +14367,7 @@ window.buildFamilyTree = function(slaves = State.variables.slaves, filterID) {
 	return family_graph;
 };
 
-/*Old version. To use, do something like: 
+/*Old version. To use, do something like:
 <div id="editFamily">
 	<div id="graph"></div>
 </div>
@@ -14596,9 +14596,9 @@ window.restoreColors = function(styleMap){
 /*
  * <<htag>> macro
  * A simple macro which allows to create wrapping html elements with dynamic IDs.
- *	idea blatantly robbed from the spanMacroJS.tw but expanded to a more generic 
+ *	idea blatantly robbed from the spanMacroJS.tw but expanded to a more generic
  *	case, allowing <div>, <button> or whatever you want. elements, default is for
- *	the div though. In addition, you can pass an object in as the first argument 
+ *	the div though. In addition, you can pass an object in as the first argument
  *	instead of an id, and each of the object's attributes will become attributes
  *	of the generate tag.
  *
@@ -35766,7 +35766,7 @@ window.Main = function() {
 }
 window.Squad = function() {
  const V = State.variables;
- V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0, PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0}, GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0}; 
+ V.SF.Squad = {Troops:40, Armoury:0, Firebase:0, AV:0, TV:0, Drones:0, Drugs:0, PGT:0, AA:0, TA:0, SpacePlane:0, GunS:0, Satellite:{lv:0, InOrbit:0}, GiantRobot:0, MissileSilo:0, AircraftCarrier:0, Sub:0, HAT:0};
 }
 window.Colonel = function() {
  const V = State.variables;
@@ -36029,7 +36029,7 @@ window.generateDiffArray = function generateDiffArray(obj) {
 	return diffArray;
 };
 
-/* 
+/*
 Shamelessly copied from https://codereview.stackexchange.com/a/11580
 Finds and returns the difference between two objects. Potentially will have arbitrary nestings of objects.
 */
@@ -36058,9 +36058,9 @@ window.difference = function difference(o1, o2) {
 	return false;
 };
 
-/* 
+/*
 Shamelessly copied from https://stackoverflow.com/a/19101235
-Flattens an object while concatenating property names. 
+Flattens an object while concatenating property names.
 For example {id: {number: 4, name: "A"}} --> {id.number: 4, id.name: "A"}
 */
 window.diffFlatten = function diffFlatten(data) {
diff --git a/src/uncategorized/industrialDairyAssignmentScene.tw b/src/uncategorized/industrialDairyAssignmentScene.tw
index 4efa0c5d545..eb245eafc93 100644
--- a/src/uncategorized/industrialDairyAssignmentScene.tw
+++ b/src/uncategorized/industrialDairyAssignmentScene.tw
@@ -2,6 +2,7 @@
 
 <<set $nextButton = "Continue">>
 <<set $nextLink = $returnTo>>
+<<setLocalPronouns $activeSlave>>
 
 When $activeSlave.slaveName reports to the dairy, it's to the sight of an unoccupied milking machine waiting for her, its straps ready to immure her in what is to be her new home.
 
diff --git a/src/uncategorized/pPeacekeepersInfluence.tw b/src/uncategorized/pPeacekeepersInfluence.tw
index 5e09de99b81..d5083a90b4a 100644
--- a/src/uncategorized/pPeacekeepersInfluence.tw
+++ b/src/uncategorized/pPeacekeepersInfluence.tw
@@ -18,33 +18,33 @@ As you review intelligence from the area at your desk,
 	$assistantName's avatar pops up.
 	<<switch $assistantAppearance>>
 	<<case "monstergirl">>
-		The little monstergirl toys with her tentacle hair until you give her your attention. When she sees that she has it, she wiggles her hips at you, and gives you a wink.
+		The little monstergirl toys with _hisA tentacle hair until you give _himA your attention. When _heA sees that _heA has it, _heA wiggles _hisA hips at you, and gives you a wink.
 	<<case "shemale">>
-		The slutty little shemale pops up, literally, bouncing upward buoyantly in a way that makes her boobs jiggle ridiculously and her cock slap wetly against her stomach.
+		The slutty little shemale pops up, literally, bouncing upward buoyantly in a way that makes _hisA boobs jiggle ridiculously and _hisA cock slap wetly against _hisA stomach.
 	<<case "schoolgirl">>
-		The slutty little schoolgirl pops up, literally, bouncing upward so violently that her skirt flies up and exposes everything. She flips it back down with a giggle.
+		The slutty little schoolgirl pops up, literally, bouncing upward so violently that _hisA skirt flies up and exposes everything. _HeA flips it back down with a giggle.
 	<<case "goddess">>
-		The beautiful, gravid goddess appears with her usual wash of radiant golden light, and gently smoothes one of her long tresses with a soft hand until she has your attention.
+		The beautiful, gravid goddess appears with _hisA usual wash of radiant golden light, and gently smoothens one of _hisA long tresses with a soft hand until _heA has your attention.
 	<<case "businesswoman">>
-		The stacked businesswoman appears hugging a tablet to her generous bosom, squashing her cleavage upward and indicating that she has important information for you.
+		The stacked businesswoman appears hugging a tablet to _hisA generous bosom, squashing _hisA cleavage upward and indicating that _heA has important information for you.
 	<<case "amazon">>
-		The ferocious little warrior woman stands up straight, cutely muscular and full of self-importance, as though she has something she'd like to share.
+		The ferocious little warrior woman stands up straight, cutely muscular and full of self-importance, as though _heA has something _heA'd like to share.
 	<<case "fairy">>
-		The little fairy appears on your table, flailing around while her body lights up. She bends over and starts slapping her butt at you and giggling. Her slapping turns into groping, and she gets lost in molesting her own ass. Clearing your throat, she looks upside down between her legs and sees that she finally has your attention.
+		The little fairy appears on your table, flailing around while _hisA body lights up. _HeA bends over and starts slapping _hisA butt at you and giggling. _HisA slapping turns into groping, and _heA gets lost in molesting _hisA own ass. Clearing your throat, _heA looks upside down between _hisA legs and sees that _heA finally has your attention.
 	<<case "pregnant fairy">>
-		The little fairy appears on your table, leaning towards you and squishing her breasts together to show off her cleavage. You completely fail to notice her. She tries again, turning around and bending over and shaking her butt while looking back at you. Yet again she fails to draw your attention. Frustrated, she sits on the table, spreading her legs and showing off her pussy. Peeking over her swollen belly, she sees that you're not even looking at her. Her tiny body is just too small to garner your attention. It's not for a few minutes until you notice her sitting up on the desk, looking away with her arms crossed and pouting.
+		The little fairy appears on your table, leaning towards you and squishing _hisA breasts together to show off _hisA cleavage. You completely fail to notice _himA. _HeA tries again, turning around and bending over and shaking _hisA butt while looking back at you. Yet again _heA fails to draw your attention. Frustrated, _heA sits on the table, spreading _hisA legs and showing off _hisA pussy. Peeking over _hisA swollen belly, _heA sees that you're not even looking at _himA. _HisA tiny body is just too small to garner your attention. It's not for a few minutes until you notice _himA sitting up on the desk, looking away with _hisA arms crossed and pouting.
 	<<case "hypergoddess">>
-		The beautiful, massively gravid goddess appears with her usual wash of radiant golden light, and gently calms her squirming occupants until she has your attention.
+		The beautiful, massively gravid goddess appears with _hisA usual wash of radiant golden light, and gently calms _hisA squirming occupants until _heA has your attention.
 	<<case "loli">>
-		The cute little loli pops up, literally, bouncing upward again and again until she is absolutely certain she has your attention.
+		The cute little loli pops up, literally, bouncing upward again and again until _heA is absolutely certain _heA has your attention.
 	<<case "preggololi">>
-		The slutty little loli appears bent over flashing her pregnant pussy at you. She giggles and straightens up once she is absolutely certain you've given her moist cleft enough attention.
+		The slutty little loli appears bent over flashing _hisA pregnant pussy at you. _HeA giggles and straightens up once _heA is absolutely certain you've given _hisA moist cleft enough attention.
 	<<case "angel">>
-		The beautiful angel appears in her usual wash of radiant white light and gently folds her wings behind her as she patiently awaits your attention.
+		The beautiful angel appears in _hisA usual wash of radiant white light and gently folds _hisA wings behind _himA as _heA patiently awaits your attention.
 	<<case "cherub">>
-		The cute little cherub appears in her usual wash of radiant white light and flutters around until she has your attention.
+		The cute little cherub appears in _hisA usual wash of radiant white light and flutters around until _heA has your attention.
 	<<case "incubus">>
-		The hung sex demon pops up, bouncing upward buoyantly in a way that makes her erect cock slide along her stomach. Stimulation just enough, she blows a huge load across your desk while moaning lewdly; she knows how to get your attention.
+		The hung sex demon pops up, bouncing upward buoyantly in a way that makes _hisA erect cock slide along _hisA stomach. Stimulation just enough, _heA blows a huge load across your desk while moaning lewdly; _heA knows how to get your attention.
 	<<case "succubus">>
 		The slutty little sex demoness pops up.
 		<<switch $assistantFSAppearance>>
@@ -59,100 +59,100 @@ As you review intelligence from the area at your desk,
 		<<case "transformation fetishist">>"<<print $PC.name>>, how do you think these implants would look in me?"
 		<<case "pastoralist">>"Oh <<print $PC.name>>, I'm so backed up. Would you give me a hand?"
 		<<case "slimness enthusiast">>"<<print $PC.name>>, do <<if $arcologies[0].FSSlimnessEnthusiastLaw == 1>>these look bigger to you?"<<else>>you think they're getting bigger?"<</if>>
-		<<default>>She spasms with a powerful orgasm and moans lewdly and loudly.
+		<<default>>_HeA spasms with a powerful orgasm and moans lewdly and loudly.
 		<</switch>>
-		She knows just how to get your attention.
+		_HeA knows just how to get your attention.
 	<<case "imp">>
-		The scandalous little imp swoops into view and eagerly stares at you, as if she has some juicy gossip to tell you.
+		The scandalous little imp swoops into view and eagerly stares at you, as if _heA has some juicy gossip to tell you.
 	<<case "witch">>
-		The cute little witch pops up, before blushing and undressing. An important message for you is scrawled across her skin.
+		The cute little witch pops up, before blushing and undressing. An important message for you is scrawled across _hisA skin.
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		Your shapeshifting assistant pops out of a crack on your desk, her belly swollen with something. She bends over and pushes out information for you, though you're not sure how.
+		Your shapeshifting assistant pops out of a crack on your desk, _hisA belly swollen with something. _HeA bends over and pushes out information for you, though you're not sure how.
 	<<default>>
-		The round symbol pulses brightly, her way of indicating that she has important information for you.
+		The round symbol pulses brightly, _hisA way of indicating that _heA has important information for you.
 	<</switch>>
-	"General $peacekeepers.generalName's men and women are using sex slaves," she reports, and brings up a trove of surveillance data to back up her assertion. "It was unofficial at first, 
+	"General $peacekeepers.generalName's men and women are using sex slaves," _heA reports, and brings up a trove of surveillance data to back up _hisA assertion. "It was unofficial at first,
 	<<switch $assistantAppearance>>
 	<<case "monstergirl">>
-		just people with weapons in their hands doing what people with power over others do," she explains approvingly, showing her fangs.
+		just people with weapons in their hands doing what people with power over others do," _heA explains approvingly, showing _hisA fangs.
 	<<case "shemale">>
-		just hot guys sticking their dicks in the local girls," she explains, masturbating openly.
+		just hot guys sticking their dicks in the local girls," _heA explains, masturbating openly.
 	<<case "schoolgirl">>
-		just boys blowing off a little steam with the local girls," she explains nastily.
+		just boys blowing off a little steam with the local girls," _heA explains nastily.
 	<<case "goddess">>
-		just the sort of thing men with arms in their hands have been doing to the locals for thousands of years," she explains.
+		just the sort of thing men with arms in their hands have been doing to the locals for thousands of years," _heA explains.
 	<<case "businesswoman">>
-		normal behavior for soldiers under severe stress in areas with civilians," she explains, sounding vaguely disapproving of something so uncivilized.
+		normal behavior for soldiers under severe stress in areas with civilians," _heA explains, sounding vaguely disapproving of something so uncivilized.
 	<<case "amazon">>
-		just warriors letting off steam with the local girls," she explains, making it sound like the most natural thing in the world.
+		just warriors letting off steam with the local girls," _heA explains, making it sound like the most natural thing in the world.
 	<<case "fairy">>
-		just some boys and girls doing those bedroom sports for indoor types" she explains.
+		just some boys and girls doing those bedroom sports for indoor types" _heA explains.
 	<<case "pregnant fairy">>
-		just some guys having fun with those bigger girls" she explains, sounding annoyed for some reason.
+		just some guys having fun with those bigger girls" _heA explains, sounding annoyed for some reason.
 	<<case "hypergoddess">>
-		just the boys trying to make sure they have someone to carry on their legacy, I'm sure," she states hopefully.
+		just the boys trying to make sure they have someone to carry on their legacy, I'm sure," _heA states hopefully.
 	<<case "loli">>
-		just wrestling and dancing," her innocence shining through her explanation.
+		just wrestling and dancing," _hisA innocence shining through _hisA explanation.
 	<<case "preggololi">>
 		just the guys enjoying some fresh young girls," _heA says with a hint of jealousy.
 	<<case "angel">>
-		just the strong taking what they want without consideration," she sighs, sounding disapproving of something so uncivilized. 
+		just the strong taking what they want without consideration," _heA sighs, sounding disapproving of something so uncivilized.
 	<<case "cherub">>
-		simply the satisfaction of one's urges," she says with disappointment.
+		simply the satisfaction of one's urges," _heA says with disappointment.
 	<<case "incubus">>
-		just men enjoying new holes," she explains, masturbating openly.
+		just men enjoying new holes," _heA explains, masturbating openly.
 	<<case "succubus">>
-		just seductresses doing what they do," she explains, masturbating openly.
+		just seductresses doing what they do," _heA explains, masturbating openly.
 	<<case "imp">>
-		just the victors enjoying the spoils," she says, a hint of excitement in her voice.
+		just the victors enjoying the spoils," _heA says, a hint of excitement in _hisA voice.
 	<<case "witch">>
-		just soldiers relaxing after a hard day," she explains.
+		just soldiers relaxing after a hard day," _heA explains.
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		just the conquerors using what's theirs," she explains, making it sound like the most natural thing in the world.
+		just the conquerors using what's theirs," _heA explains, making it sound like the most natural thing in the world.
 	<<default>>
-		just the common behavior of troops under severe stress in areas with civilians," she explains.
+		just the common behavior of troops under severe stress in areas with civilians," _heA explains.
 	<</switch>>
 	"But it's spread, and with their independence, General $peacekeepers.generalName has decided to bring it under control by setting up official slave brothels for his troops. @@.yellow;The officer in charge of staffing these doesn't have enough money to pay Free Cities prices, but I've added him to the standard slave sale interface.@@ Selling sex slaves to him at a price General $peacekeepers.generalName's people can afford would bring them closer to $arcologies[0].name."
 	<<switch $assistantAppearance>>
 	<<case "monstergirl">>
-		She strokes her cocks meaningfully. "Selling them a particularly distinctive, valuable girl might even influence their tastes. Imagine, manipulating an entire army by providing it with skilled whores." She shudders.
+		_HeA strokes _hisA cocks meaningfully. "Selling them a particularly distinctive, valuable girl might even influence their tastes. Imagine, manipulating an entire army by providing it with skilled whores." _HeA shudders.
 	<<case "shemale">>
-		She strokes her cock meaningfully. "Oh, and they could even develop into a regular market if they're sold distinctive, valuable girls. We should totally get them addicted to anal whores." To make her meaning perfectly clear, she sticks out her butt and winks her lewd little anus.
+		_HeA strokes _hisA cock meaningfully. "Oh, and they could even develop into a regular market if they're sold distinctive, valuable girls. We should totally get them addicted to anal whores." To make _hisA meaning perfectly clear, _heA sticks out _hisA butt and winks _hisA lewd little anus.
 	<<case "schoolgirl">>
-		She flashes her breasts, as though to an appreciative crowd. "If we sell them hotties, it'll get them even more used to us," she says naughtily. "Get them used to Free Cities girls sucking their dicks all the time!"
+		_HeA flashes _hisA breasts, as though to an appreciative crowd. "If we sell them hotties, it'll get them even more used to us," _heA says naughtily. "Get them used to Free Cities girls sucking their dicks all the time!"
 	<<case "goddess">>
-		She caresses her pregnancy. "If we sell them some of our best slaves, I'm sure their virtues will win General $peacekeepers.generalName's men and women over," she says confidently. "It'd be like sending some of my own out to love each and every one of them."
+		_HeA caresses _hisA pregnancy. "If we sell them some of our best slaves, I'm sure their virtues will win General $peacekeepers.generalName's men and women over," _heA says confidently. "It'd be like sending some of my own out to love each and every one of them."
 	<<case "businesswoman">>
-		She fans herself, flushing at the possibilities. "Just think, they might develop into a regular, profitable market for sex slaves if they're sent top-quality product at first to build up the brand," she says huskily, and then climaxes.
+		_HeA fans _himselfA, flushing at the possibilities. "Just think, they might develop into a regular, profitable market for sex slaves if they're sent top-quality product at first to build up the brand," _heA says huskily, and then climaxes.
 	<<case "amazon">>
-		She flexes her muscles, crossing her arms under her big breasts and feeling her own biceps thoughtfully. "Selling them good stock would make them like us even more, I bet," she says. "Sharing a good slut around the campfire is a good way to make friends!"
+		_HeA flexes _hisA muscles, crossing _hisA arms under _hisA big breasts and feeling _hisA own biceps thoughtfully. "Selling them good stock would make them like us even more, I bet," _heA says. "Sharing a good slut around the campfire is a good way to make friends!"
 	<<case "fairy">>
-		She reaches behind herself and starts groping her butt again. "If we sell them some super cuties, they'll really love us!" she giggles as she gives herself a playful slap.
+		_HeA reaches behind _himselfA and starts groping _hisA butt again. "If we sell them some super cuties, they'll really love us!" _heA giggles as _heA gives _himselfA a playful slap.
 	<<case "pregnant fairy">>
-		Since she has your attention now, she slowly spreads her legs and flashes her pussy once again. Seeing you watch with interest this time, a small smile creeps up on her face. "If we sell them some of our prettier girls, they'll be sure to warm up to us."
+		Since _heA has your attention now, _heA slowly spreads _hisA legs and flashes _hisA pussy once again. Seeing you watch with interest this time, a small smile creeps up on _hisA face. "If we sell them some of our prettier girls, they'll be sure to warm up to us."
 	<<case "hypergoddess">>
-		She caresses her pregnancy. "If we sell them some of our fertile slaves, I'm sure their burgeoning pregnancies will ease them into relying on us," she says confidently. "Or at least it will result in more slaves later on."
+		_HeA caresses _hisA pregnancy. "If we sell them some of our fertile slaves, I'm sure their burgeoning pregnancies will ease them into relying on us," _heA says confidently. "Or at least it will result in more slaves later on."
 	<<case "loli">>
-		She claps excitedly. "If we sell them new friends, then they'll hear from them about how great the Free Cities are and want to become our friends too!" She says hopefully, eager to meet all the newcomers to the arcology.
+		_HeA claps excitedly. "If we sell them new friends, then they'll hear from them about how great the Free Cities are and want to become our friends too!" _heA says hopefully, eager to meet all the newcomers to the arcology.
 	<<case "preggololi">>
-		She claps excitedly. "I don't know what they think of lolis, but selling them a few cute little slave girls will surely warm them up to us," she says, patting her belly. "Plus, I'm sure they'll love how tight they are and how much energy they have once you break them in!"
+		_HeA claps excitedly. "I don't know what they think of lolis, but selling them a few cute little slave girls will surely warm them up to us," _heA says, patting _hisA belly. "Plus, I'm sure they'll love how tight they are and how much energy they have once you break them in!"
 	<<case "angel">>
-		She wrings a wing nervously. "If we send them nice girls, we'd be doing a disservice to them by sending them away. But if we don't, how can we be certain that the girls they have will be well cared for? We definitely need to teach them our ways." She concludes.
+		_HeA wrings a wing nervously. "If we send them nice girls, we'd be doing a disservice to them by sending them away. But if we don't, how can we be certain that the girls they have will be well cared for? We definitely need to teach them our ways," _heA concludes.
 	<<case "cherub">>
-		She lands and ponders deeply. "We have to show them the right way before they get mislead. Some of our finest girls should help convert them to our ways!"
+		_HeA lands and ponders deeply. "We have to show them the right way before they get mislead. Some of our finest girls should help convert them to our ways!"
 	<<case "incubus">>
-		She strokes her cock meaningfully. "Oh, and they could even develop into a regular market if they're sold distinctive, sexy girls. We should totally get them addicted to rape." She makes several thrusting motions.
+		_HeA strokes _hisA cock meaningfully. "Oh, and they could even develop into a regular market if they're sold distinctive, sexy girls. We should totally get them addicted to rape." _HeA makes several thrusting motions.
 	<<case "succubus">>
-		She fingers her pussy meaningfully. "Oh, and they could even develop into a regular market if they're sold distinctive, sexy girls. Plus that means more money for you, and less competition for me." She winks.
+		_HeA fingers _hisA pussy meaningfully. "Oh, and they could even develop into a regular market if they're sold distinctive, sexy girls. Plus that means more money for you, and less competition for me." _HeA winks.
 	<<case "imp">>
-		She punches her fist into her palm. "We should sell them sexy, but unbroken, girls. That way they can learn to love breaking slaves into proper sex toys!" She shivers with orgasm at the thought.
+		_HeA punches _hisA fist into _hisA palm. "We should sell them sexy, but unbroken, girls. That way they can learn to love breaking slaves into proper sex toys!" _HeA shivers with orgasm at the thought.
 	<<case "witch">>
-		She runs her hat through her hands. "If we sell them skilled girls, they'll grow closer to us. But we have to be careful not to send them klutzes like me; not everyone finds that adorable." She takes the time to mend the rip she accidentally tore in her hat's brim.
+		_HeA runs _hisA hat through _hisA hands. "If we sell them skilled girls, they'll grow closer to us. But we have to be careful not to send them klutzes like me; not everyone finds that adorable." _HeA takes the time to mend the rip _heA accidentally tore in _hisA hat's brim.
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		She ponders deeply. "We could sell them the most loyal girls we have. They'll naturally lead them back to us. And then they are ours to do as we please," she says smiling deviously.
+		_HeA ponders deeply. "We could sell them the most loyal girls we have. They'll naturally lead them back to us. And then they are ours to do as we please," _heA says smiling deviously.
 	<<default>>
-		Her symbol takes on a rapid succession of pulsating lewd shapes, signifying some of the arcology's better varieties of sex slaves. "If they're sold good product, they may become a reliable market," she asserts.
+		_HisA symbol takes on a rapid succession of pulsating lewd shapes, signifying some of the arcology's better varieties of sex slaves. "If they're sold good product, they may become a reliable market," _heA asserts.
 	<</switch>>
 <<else>>
-	your personal assistant appears to offer a suggestion. "I have collated data on the use of unofficial sex slaves by General $peacekeepers.generalName's forces," it reports. "Despite the high state of readiness of his forces, the use of comfort women seems to have become widespread. Characteristically, the general has responded to this by accepting the new status quo, and is setting up recreation centers to ensure that the practice does not become disruptive. One of his officers has been tasked with obtaining appropriate sex slaves, but does not have sufficient resources to pay Free Cities prices. @@.yellow;The purchasing officer may appear as a slave buyer through the standard slave sale interface.@@ It may be possible to influence them by selling them high-quality slaves."
+	your personal assistant appears to offer a suggestion. "I have collated data on the use of unofficial sex slaves by General $peacekeepers.generalName's forces," _heA reports. "Despite the high state of readiness of his forces, the use of comfort women seems to have become widespread. Characteristically, the general has responded to this by accepting the new status quo, and is setting up recreation centers to ensure that the practice does not become disruptive. One of his officers has been tasked with obtaining appropriate sex slaves, but does not have sufficient resources to pay Free Cities prices. @@.yellow;The purchasing officer may appear as a slave buyer through the standard slave sale interface.@@ It may be possible to influence them by selling them high-quality slaves."
 <</if>>
\ No newline at end of file
-- 
GitLab