From 340528ee022e62532816df79b109a9bdf03393c0 Mon Sep 17 00:00:00 2001 From: san7890 Date: Sat, 6 May 2023 20:06:38 -0600 Subject: [PATCH 1/2] removes the ending flag --- game/script.rpy | 1 - game/storyline.rpy | 1 - game/utility.rpy | 2 -- 3 files changed, 4 deletions(-) diff --git a/game/script.rpy b/game/script.rpy index 2e85614..3859f89 100644 --- a/game/script.rpy +++ b/game/script.rpy @@ -316,7 +316,6 @@ transform scloserleft: label start: $ fangscore = 0 $ anonscore = 0 - $ tradwife = False $ wingStory = False pause 1.0 call storyline from _call_storyline diff --git a/game/storyline.rpy b/game/storyline.rpy index d07a240..5822476 100644 --- a/game/storyline.rpy +++ b/game/storyline.rpy @@ -30,7 +30,6 @@ label storyline: call chapter_13D from _call_chapter_13D call chapter_14D from _call_chapter_14D elif _return == Endings.Tradwife: - $ tradwife = True call chapter_11C from _call_chapter_11C call chapter_12C from _call_chapter_12C call chapter_12_5C from _call_chapter_12_5C diff --git a/game/utility.rpy b/game/utility.rpy index 9f5bd61..241cdd5 100644 --- a/game/utility.rpy +++ b/game/utility.rpy @@ -14,10 +14,8 @@ label initstats(anon=0, fang=0, trad=False): # Sets various game-related global variables # :param int anon: Anon's score # :param int fang: Fang's score - # :param bool trad: Tradwife ending flag $ anonscore = anon $ fangscore = fang - $ tradwife = trad return label get_ending: From 404d3f91bd534fafb31fd0a19f58a3794bff1de7 Mon Sep 17 00:00:00 2001 From: san7890 Date: Sat, 6 May 2023 20:11:35 -0600 Subject: [PATCH 2/2] removes the `trad` arg to `initstats()` as well --- game/utility.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/utility.rpy b/game/utility.rpy index 241cdd5..af7b95e 100644 --- a/game/utility.rpy +++ b/game/utility.rpy @@ -10,7 +10,7 @@ init python: Tradwife = 2 Golden = 3 -label initstats(anon=0, fang=0, trad=False): +label initstats(anon=0, fang=0): # Sets various game-related global variables # :param int anon: Anon's score # :param int fang: Fang's score