From 7ae0707c842bde3814324f2af008da5cf2bb3d3f Mon Sep 17 00:00:00 2001 From: nutbuster Date: Sun, 31 Oct 2021 13:45:26 +1100 Subject: [PATCH] Add wingStory check for ending 4 --- game/utility.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/utility.rpy b/game/utility.rpy index 27f4990..c0fdcae 100644 --- a/game/utility.rpy +++ b/game/utility.rpy @@ -13,7 +13,7 @@ label initstats(anon=0, fang=0, trad=False): label get_ending: # To check what ending we're getting, call this label and then check the value of _return # Sensible to have this logic defined in only one place for consistency - if anonscore >= 4 and fangscore >= 4: + if anonscore >= 4 and fangscore >= 4 and wingStory: return(4) # Golden elif anonscore >= 3 and fangscore <=4: return(3) # Tradwife