From 30b8a63e2e47e26c9d152a7a58563e242615823c Mon Sep 17 00:00:00 2001
From: lowercase-donkey <lowercasedonkey@gmail.com>
Date: Fri, 15 Feb 2019 21:11:30 -0500
Subject: [PATCH] remove curve from startup just to be safe

---
 src/events/intro/initNationalities.tw | 4 ++--
 src/init/storyInit.tw                 | 3 ++-
 src/js/economyJS.js                   | 3 ++-
 3 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/src/events/intro/initNationalities.tw b/src/events/intro/initNationalities.tw
index 289aa70bc9e..e01e8a82ddc 100644
--- a/src/events/intro/initNationalities.tw
+++ b/src/events/intro/initNationalities.tw
@@ -62,9 +62,9 @@
 	<<run repX(2000, "event")>>
 <<elseif $PC.visualAge < 35>>
 	<<if $rep >= 2000>>
-	<<run repX(-2000, "event")>>
+		<<run repX(-2000, "event")>>
 	<<else>>
-	<<set $rep = 0>>
+		<<run repX(-Math.abs($rep), "event")>> /*set rep to zero */
 	<</if>>
 <</if>>
 
diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index 999ac5010b9..3ed33fe7b2f 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -1105,7 +1105,8 @@ You should have received a copy of the GNU General Public License along with thi
 <<set $minimumSlaveCost = 2500>>
 <<set $facilityCost = 100>>
 <<set $enduringRep = 1000>>
-<<set $rep = 1000>>
+<<set $rep = 0>>
+<<run repX(1000, "event")>>
 <<set $cashLastWeek = 0>>
 <<set $repLastWeek = 0>>
 
diff --git a/src/js/economyJS.js b/src/js/economyJS.js
index 6beed17cf10..f90c1ca74f0 100644
--- a/src/js/economyJS.js
+++ b/src/js/economyJS.js
@@ -1172,7 +1172,8 @@ window.repX = function(rep, what, who) {
 		}
 
 		//record the action
-		if (what === "cheating") {
+		if (what === "cheating" || passage() == "init" || passage() == "init Nationalities") {
+			/*we don't want to curve anything on startup or for cheating.*/
 			V.lastWeeksRepIncome[what] += rep;
 		} else if (typeof V.lastWeeksRepIncome[what] !== 'undefined') {
 			rep = Math.round(Math.pow(1000 * rep + Math.pow(V.rep, 2), 0.5) - V.rep)* (V.corpEasy + 1);
-- 
GitLab