diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index be553b74c587e5819b441f717e393d0fff8ebc2a..858a3b4b09e74d1462f6bb2e5e38f3ff4ef1d4cd 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -4,6 +4,11 @@
 
 4/11/2018
 
+	41
+	-various fixes
+	-encyclopedia prodding from SFanon
+	-new means to add, remove, and locate slaves via index map
+
 	40
 	-added fuckdoll impregnation
 	-preglocke's fSlaveSlaveVagConsumate cleanup and content addition
diff --git a/devNotes/twine JS b/devNotes/twine JS
index ef27e3617f246db42eab836c202f7b0c41376cd0..79d7818d47cfc5478723caf922100958632c8a93 100644
--- a/devNotes/twine JS	
+++ b/devNotes/twine JS	
@@ -6867,6 +6867,28 @@ window.inferiorRaceP = function inferiorRaceP(slave) {
 	return State.variables.arcologies[0].FSSubjugationistRace === slave.race
 }
 
+window.addSlave = function addSlave(slave) {
+	State.variables.slaves.push(slave);
+	State.variables.slaveIndices[slave.id] = State.variables.slaves.length - 1;
+};
+
+window.removeSlave = function removeSlave(index) {
+	delete State.variables.slaveIndices[State.variables.slaves[index].id];
+	return State.variables.slaves.deleteAt(index);
+};
+
+window.slaves2indices = function slaves2indices() {
+	const obj = {};
+	State.variables.slaves.forEach((slave, i) => obj[slave.id] = i);
+	return obj;
+};
+
+window.getSlave = function getSlave(ID) {
+	const index = State.variables.slaveIndices[ID];
+	if (index === undefined) return null;
+	else return State.variables.slaves[State.variables.slaveIndices[ID]];
+};
+
 /*:: wombJS [script]*/
 
 /*
@@ -7911,7 +7933,7 @@ window.todaysCorset = function(slave) {
 
 // this is a port of the FResult widget
 // it has been broken up into several functions, because it grew too long
-// it has been wrapped in a closure so as not to polute the global namespace
+// it has been wrapped in a closure so as not to pollute the global namespace
 // and so that nested functions are only evaluated once
 
 window.FResult = (function() {
diff --git a/src/npc/descriptions/fVagina.tw b/src/npc/descriptions/fVagina.tw
index 4a377fbfda33e7344bd857ac4b7c71ebd37c9099..af198931a3cb2dbc9b1c4aade5d0da595e4e9dd5 100644
--- a/src/npc/descriptions/fVagina.tw
+++ b/src/npc/descriptions/fVagina.tw
@@ -97,7 +97,7 @@ You call her over so you can
 <<if canWalk($activeSlave) && $activeSlave.fetish != "mindbroken">>
 	You decide to fuck her
 	<<if (_fPosition <= 20)>>
-		in the missionary position. You tell her to lie down on the couch next to your desk.
+		in the missionary position.
 		<<if $activeSlave.bellyPreg >= 600000>>
 			A position that will be a challenge due to her immense pregnancy.
 		<<elseif $activeSlave.belly >= 600000>>
@@ -109,6 +109,7 @@ You call her over so you can
 		<<elseif $activeSlave.belly+$PC.belly >= 20000 && $activeSlave.belly >= 1500 && $PC.belly >= 1500>>
 			A position that will be difficult with the combined size of your rounded middles.
 		<</if>>
+		You tell her to lie down on the couch next to your desk.
 	<<elseif (_fPosition <= 40)>>
 		in the cowgirl position. You lie on the couch beside your desk and tell her to straddle you, facing towards you.
 		<<if $activeSlave.bellyPreg >= 600000>>
diff --git a/src/uncategorized/pRivalryVictory.tw b/src/uncategorized/pRivalryVictory.tw
index efe9d5f0cfe014b97d1fb01c36520c37aa3e717c..51f10ade7408a3b4aa445c7b7861073834991517 100644
--- a/src/uncategorized/pRivalryVictory.tw
+++ b/src/uncategorized/pRivalryVictory.tw
@@ -125,7 +125,7 @@ For the first time, you receive a direct call from your rival. You pictured the
 		<<set $cash -= random(10000,25000)>>
 	<</if>>
 	<<set $cash -= 50000>>
-	<<include "pRivalryCapture">>
+	<<include "P rivalry capture">>
 	<</replace>>
 <</link>>
 </span>
diff --git a/src/uncategorized/saRivalries.tw b/src/uncategorized/saRivalries.tw
index 985f3e7931138726d13b28a10c5fca552159b35a..ac2493535cc56764996b1e8d138f206a130559f3 100644
--- a/src/uncategorized/saRivalries.tw
+++ b/src/uncategorized/saRivalries.tw
@@ -82,7 +82,7 @@
 						<<break>>
 					<</if>>
 				<<case "devout">>
-					<<if $slaves[_j].behavioralFlaw == "anorexic">>
+					<<if $slaves[_j].behavioralFlaw == "liberated">>
 						$slaves[$i].slaveName, who is devout and might be considered rather conservative if she were free, can't stand <<SlaveFullName $slaves[_j]>>'s revolting gender liberation. @@.lightsalmon;They start to dislike each other.@@
 						<<set $slaves[_j].rivalry = 1, $slaves[$i].rivalry = 1, $slaves[_j].rivalryTarget = $slaves[$i].ID, $slaves[$i].rivalryTarget = $slaves[_j].ID>>
 						<<break>>