From 838c4e07ed4848759f0defdd25e36b13e784ca7f Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Mon, 15 Jun 2020 11:15:51 +0200 Subject: [PATCH] fixes --- src/events/intro/introSummary.tw | 2 +- src/npc/startingGirls/startingGirls.tw | 2 +- src/uncategorized/saLongTermEffects.tw | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index 12c8200f6f3..7afeeefe99f 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -95,7 +95,7 @@ You may review your settings before clicking "Continue" to begin.<br> <br><br> -<<run App.UI.tabbar.handlePreSelectedTab($tabChoice.introSummary)>> +<<run App.UI.tabbar.handlePreSelectedTab($tabChoice.IntroSummary)>> <div class="tabbar"> <button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'World')" id="tab World">World</button> diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index 97424dd6dfa..0fd7eb6ca0a 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -151,7 +151,7 @@ </p> <</if>> -<<run App.UI.tabbar.handlePreSelectedTab($tabChoice.startingGirls)>> +<<run App.UI.tabbar.handlePreSelectedTab($tabChoice.StartingGirls)>> <<if !$activeSlave>> <<set $activeSlave = App.StartingGirls.generate()>> diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw index ad924efedfb..615ead42772 100644 --- a/src/uncategorized/saLongTermEffects.tw +++ b/src/uncategorized/saLongTermEffects.tw @@ -4185,11 +4185,11 @@ <</if>> <</if>> <<case "labor suppressors">> - <<if $slaves[$i].geneticQuirks.uterineHypersensitivity == 2 && $slaves[$i].counters.birthsTotal > 0>> + <<if $slaves[$i].geneticQuirks.uterineHypersensitivity == 2 && $slaves[$i].counter.birthsTotal > 0>> <<if $geneticMappingUpgrade >= 1>> Birth is incredibly pleasurable to $him due to $his uterine hypersensitivity, filling $him with @@.gold;fear@@ and @@.mediumorchid;loathing@@ that $he won't be allowed to reach that high again. <<else>> - $He is filled with unwarrented @@.gold;paranoia@@ and @@.mediumorchid;hate@@ over you delaying $his upcoming birth. + $He is filled with unwarranted @@.gold;paranoia@@ and @@.mediumorchid;hate@@ over you delaying $his upcoming birth. <</if>> <<set $slaves[$i].devotion -= 10>> <<set $slaves[$i].trust -= 10>> @@ -7665,11 +7665,11 @@ <</if>> <<if $slaves[$i].geneticQuirks.uterineHypersensitivity == 2>> - <<if$slaves[$i].vaginaLube < 2 && $slaves[$i].preg >= $slaves[$i].pregData.normalBirth * .75>> + <<if $slaves[$i].vaginaLube < 2 && $slaves[$i].preg >= $slaves[$i].pregData.normalBirth * .75>> <<if $geneticMappingUpgrade >= 1>> $His vagina begins to @@.lime;produce more sexual fluids@@ as the stimulation to $his hypersensetive uterus nears its climax. <<else>> - $His vagina oddly begins to @@.lime;produce more sexual fluids@@ in apparent preperation to $his upcoming birth. + $His vagina oddly begins to @@.lime;produce more sexual fluids@@ in apparent preparation to $his upcoming birth. <</if>> <<set $slave.vaginaLube += 1>> <</if>> -- GitLab