diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 1c304e360c21c509cc0792499c45892d51a6fdd4..15b46446a984f2de197d4ccb7d172d5d3231c6b7 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -4,6 +4,9 @@
 
 8/05/2018
 
+	22
+	-more little fixes
+
 	21
 	-added height comparison to the RA
 
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 33da116998c1febb9f5bd853510e1d3f28b21008..3e9c64eea1b555a5c04c8d5ddcc47457ce8e70c4 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -17967,7 +17967,7 @@ window.PartnerVCheck = function PartnerVCheck(analTimes, bothTimes) {
 				partner.anus = 1;
 			}
 			else {
-				r += `Since it's ${partner.slaveName}'s first time, you take your time and gently ease yourself into her pussy before gradually increasing the intensity of your thrusts. @@.lime;This breaks in partner.slaveName's virgin pussy.@@ `;
+				r += `Since it's ${partner.slaveName}'s first time, you take your time and gently ease yourself into her pussy before gradually increasing the intensity of your thrusts. @@.lime;This breaks in ${partner.slaveName}'s virgin pussy.@@ `;
 				partner.vagina = 1;
 			}
 		}
diff --git a/src/js/sexActsJS.tw b/src/js/sexActsJS.tw
index d3648912ad4231ddee61e2b57d8b25b82e33abed..4fb3f15c230b0774fa20be0bac1aef88572b4aff 100644
--- a/src/js/sexActsJS.tw
+++ b/src/js/sexActsJS.tw
@@ -306,7 +306,7 @@ window.PartnerVCheck = function PartnerVCheck(analTimes, bothTimes) {
 				partner.anus = 1;
 			}
 			else {
-				r += `Since it's ${partner.slaveName}'s first time, you take your time and gently ease yourself into her pussy before gradually increasing the intensity of your thrusts. @@.lime;This breaks in partner.slaveName's virgin pussy.@@ `;
+				r += `Since it's ${partner.slaveName}'s first time, you take your time and gently ease yourself into her pussy before gradually increasing the intensity of your thrusts. @@.lime;This breaks in ${partner.slaveName}'s virgin pussy.@@ `;
 				partner.vagina = 1;
 			}
 		}
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 82eda66fec8b69667d865df218c5a72ad72fd7eb..fa7eab2bd0ee02acd2ec44e3bb3f8bb02ab17f72 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -1091,20 +1091,20 @@ Aphrodisiacs: <span id="aphrodisiacs"><strong><<if $activeSlave.aphrodisiacs > 1
 	<<if ($activeSlave.preg >= 38)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<if $activeSlave.pregControl == "labor supressors">>
-			<<link "Normal Birth">><<set $activeSlave.pregControl = "none">><<SlaveInteractImpreg>><</link>>
+			<<link "Normal Birth">><<set $activeSlave.pregControl = "none">><<SlaveInteractFertility>><</link>>
 		<<else>>
-			<<link "Supress Labor">><<set $activeSlave.pregControl = "labor supressors">><<SlaveInteractImpreg>><</link>>
+			<<link "Supress Labor">><<set $activeSlave.pregControl = "labor supressors">><<SlaveInteractFertility>><</link>>
 		<</if>>
 	<<elseif ($activeSlave.preg < 40)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<if $activeSlave.pregControl != "none">>
-			<<link "Normal Gestation">><<set $activeSlave.pregControl = "none">><<SlaveInteractImpreg>><</link>> |
+			<<link "Normal Gestation">><<set $activeSlave.pregControl = "none">><<SlaveInteractFertility>><</link>> |
 		<</if>>
 		<<if $activeSlave.pregControl != "slow Gestation">>
-			<<link "Slow Gestation">><<set $activeSlave.pregControl = "slow gestation">><<SlaveInteractImpreg>><</link>> |
+			<<link "Slow Gestation">><<set $activeSlave.pregControl = "slow gestation">><<SlaveInteractFertility>><</link>> |
 		<</if>>
 		<<if $activeSlave.pregControl != "speed up">>
-			<<link "Fast Gestation">><<set $activeSlave.pregControl = "speed up">><<SlaveInteractImpreg>><</link>>
+			<<link "Fast Gestation">><<set $activeSlave.pregControl = "speed up">><<SlaveInteractFertility>><</link>>
 		<</if>>
 	<</if>>
 <</if>>
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index e16207ab1f911a5b512531f87eb3f6ac30aee76d..545a98ad6e81a21c682bc4569b80f8c82760193c 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -352,10 +352,12 @@
 		__Contraception__: <span id="fertility"><strong><<if $activeSlave.preg == -1>><<print "using contraceptives">><<elseif $activeSlave.pregWeek < 0>><<print "postpartum">><<elseif $activeSlave.preg == 0>><<print "fertile">><<elseif $activeSlave.preg < 4>><<print "may be pregnant">><<else>><<print $activeSlave.preg>><<print " weeks pregnant">><</if>></strong></span>.
 		<<if ($activeSlave.preg == 0)>>
 			<<link "Use contraceptives">><<set $activeSlave.preg = -1>>
+			<<SlaveInteractImpreg>>
 			<<SlaveInteractFertility>>
 			<</link>>
 		<<elseif ($activeSlave.preg == -1)>>
 			<<link "Let it get pregnant">><<set $activeSlave.preg = 0>>
+			<<SlaveInteractImpreg>>
 			<<SlaveInteractFertility>>
 			<</link>>
 		<<elseif $activeSlave.induce == 1>>
@@ -385,20 +387,20 @@
 	<<if ($activeSlave.preg >= 38)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<if $activeSlave.pregControl == "labor supressors">>
-			<<link "Normal Birth">><<set $activeSlave.pregControl = "none">><<SlaveInteractImpreg>><</link>>
+			<<link "Normal Birth">><<set $activeSlave.pregControl = "none">><<SlaveInteractFertility>><</link>>
 		<<else>>
-			<<link "Supress Labor">><<set $activeSlave.pregControl = "labor supressors">><<SlaveInteractImpreg>><</link>>
+			<<link "Supress Labor">><<set $activeSlave.pregControl = "labor supressors">><<SlaveInteractFertility>><</link>>
 		<</if>>
 	<<elseif ($activeSlave.preg < 40)>>
 		<br>&nbsp;&nbsp;&nbsp;&nbsp;
 		<<if $activeSlave.pregControl != "none">>
-			<<link "Normal Gestation">><<set $activeSlave.pregControl = "none">><<SlaveInteractImpreg>><</link>> |
+			<<link "Normal Gestation">><<set $activeSlave.pregControl = "none">><<SlaveInteractFertility>><</link>> |
 		<</if>>
 		<<if $activeSlave.pregControl != "slow Gestation">>
-			<<link "Slow Gestation">><<set $activeSlave.pregControl = "slow gestation">><<SlaveInteractImpreg>><</link>> |
+			<<link "Slow Gestation">><<set $activeSlave.pregControl = "slow gestation">><<SlaveInteractFertility>><</link>> |
 		<</if>>
 		<<if $activeSlave.pregControl != "speed up">>
-			<<link "Fast Gestation">><<set $activeSlave.pregControl = "speed up">><<SlaveInteractImpreg>><</link>>
+			<<link "Fast Gestation">><<set $activeSlave.pregControl = "speed up">><<SlaveInteractFertility>><</link>>
 		<</if>>
 	<</if>>
 <</if>>