diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index d5e916a66bda6be58ffeb3b42a471e3c6cf9c84a..b88600f7444f14a627f375888035d2577487c08f 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -4,9 +4,12 @@
 
 9/02/2018
 
-	16
+	17
 	-fixes
 
+	16
+	-fixed player pregnancy not properly transferring across NG+
+
 	15
 	-added chemical castration
 	-newly grown testicles and ovaries may now replace existing ones (currently only used to replace sterilized balls)
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 9f60ea4cf5c3e78569c9d1b997d86c88ca2fd08c..a20ee1b0f6941e9ffaa5063418b5b564e345b3f5 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -3660,7 +3660,7 @@ window.ValidateFacilityDecoration = function ValidateFacilityDecoration(decorati
 	}
 };
 
-function ordinalSuffix(i) {
+window.ordinalSuffix = function ordinalSuffix(i) {
     var j = i % 10,
         k = i % 100;
     if (j == 1 && k != 11) {
diff --git a/src/js/utilJS.tw b/src/js/utilJS.tw
index 48897ebd0684bdf95b544d4f08841ac2f668b93a..2e11e7356cfdcdafcea74eba91c037b74a08cd88 100644
--- a/src/js/utilJS.tw
+++ b/src/js/utilJS.tw
@@ -780,7 +780,7 @@ window.ValidateFacilityDecoration = function ValidateFacilityDecoration(decorati
 	}
 };
 
-function ordinalSuffix(i) {
+window.ordinalSuffix = function ordinalSuffix(i) {
     var j = i % 10,
         k = i % 100;
     if (j == 1 && k != 11) {
diff --git a/src/uncategorized/sellSlave.tw b/src/uncategorized/sellSlave.tw
index 2575b77829b2214782ab7537d442428e85279ae3..4cd202e8076c3c468b8262ea315531ab8f0cd3b0 100644
--- a/src/uncategorized/sellSlave.tw
+++ b/src/uncategorized/sellSlave.tw
@@ -633,7 +633,6 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu
 	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += _Price>>
 		<<set $buyer = "elite auction">>
-		<<goto "Slave Sold">>
 	<</link>>
 <<else>>
 __Bids Received__
@@ -1539,7 +1538,6 @@ __Bids Received__
 	<<link "Accept bid" "Slave Sold">>
 		<<set $cash += 500*Math.trunc(($slaveCost*1.25)/500)>>
 		<<set $buyer = "supremacist arcology">>
-		<<goto >>
 	<</link>>
 	<</if>>
 <</if>>