From c3fdd9c8e761c1e61e6ff6fede9ea37e3ed4bf13 Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Sun, 2 Sep 2018 23:37:20 -0400
Subject: [PATCH] fixes

---
 devNotes/VersionChangeLog-Premod+LoliMod.txt | 5 ++++-
 devNotes/twine JS.txt                        | 2 +-
 src/js/utilJS.tw                             | 2 +-
 src/uncategorized/sellSlave.tw               | 2 --
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index d5e916a66bd..b88600f7444 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 9f60ea4cf5c..a20ee1b0f69 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 48897ebd068..2e11e7356cf 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 2575b77829b..4cd202e8076 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>>
-- 
GitLab