From c493666bf97f7dfc3bc7d969b1fdbdc94828a6be Mon Sep 17 00:00:00 2001 From: DCoded <dcoded@live.com> Date: Mon, 21 Jan 2019 21:19:26 -0500 Subject: [PATCH] Cleanup --- src/events/intro/introSummary.tw | 4 ++-- src/init/storyInit.tw | 2 +- src/uncategorized/BackwardsCompatibility.tw | 2 +- src/uncategorized/options.tw | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/events/intro/introSummary.tw b/src/events/intro/introSummary.tw index 449ffa42c3f..f4f66391c46 100644 --- a/src/events/intro/introSummary.tw +++ b/src/events/intro/introSummary.tw @@ -459,10 +459,10 @@ Should children born in game strictly adhere to dick content settings? <br> <<if $seeBestiality == 1>> Bestiality content is ''enabled''. - [[Disable|Intro Summary][$seeBestiality = false]] + [[Disable|Intro Summary][$seeBestiality = 0]] <<else>> Bestiality content is ''disabled''. - [[Enable|Intro Summary][$seeBestiality = true]] + [[Enable|Intro Summary][$seeBestiality = 1]] <</if>> <<if $seeDicks != 0>> diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw index c4269fa848d..55f2061c589 100644 --- a/src/init/storyInit.tw +++ b/src/init/storyInit.tw @@ -209,7 +209,7 @@ You should have received a copy of the GNU General Public License along with thi <<set $seeFCNN = 1>> <<set $useSummaryCache = true>> <<set $seeExtreme = 0>> - <<set $seeBestiality = false>> + <<set $seeBestiality = 0>> <<set $extremeUnderage = 0>> <<set $seeHyperPreg = 0>> <<set $seePreg = 1>> diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw index cff3df47080..49b943a2fcd 100644 --- a/src/uncategorized/BackwardsCompatibility.tw +++ b/src/uncategorized/BackwardsCompatibility.tw @@ -556,7 +556,7 @@ <<unset $showBestiality>> <</if>> <<if ndef $seeBestiality>> - <<set $seeBestiality = false>> + <<set $seeBestiality = 0>> <</if>> <<if ndef $extremeUnderage>> <<set $extremeUnderage = 0>> diff --git a/src/uncategorized/options.tw b/src/uncategorized/options.tw index d1eb7efda5d..db94ca6b950 100644 --- a/src/uncategorized/options.tw +++ b/src/uncategorized/options.tw @@ -361,9 +361,9 @@ Assignment performance vignettes on the end week report are <br> <<if ($seeBestiality == 0)>> - Bestiality related content is currently @@.red;DISABLED.@@ [[Enable|Options][$seeBestiality = true]] + Bestiality related content is currently @@.red;DISABLED.@@ [[Enable|Options][$seeBestiality = 1]] <<else>> - Bestiality related content is currently @@.cyan;ENABLED.@@ [[Disable|Options][$seeBestiality = false]] //Will not remove existing facilities, but will block content from appearing.// + Bestiality related content is currently @@.cyan;ENABLED.@@ [[Disable|Options][$seeBestiality = 0]] //Will not remove existing facilities, but will block content from appearing.// <</if>> <br> -- GitLab