Comment out storyline and get_ending labels

This commit is contained in:
2024-08-08 22:42:08 -03:00
parent c68090bf58
commit 366c62d484
2 changed files with 53 additions and 53 deletions

View File

@ -9,17 +9,17 @@ label initstats(anon=0, fang=0):
$ fangscore = fang
return
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 and wingStory:
return(4) # Golden
elif anonscore >= 3 and fangscore <=4:
return(3) # Tradwife
elif anonscore <= 3 and fangscore >=3:
return(2) # Doomer
else:
return(1) # Shooter
# 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 and wingStory:
# return(4) # Golden
# elif anonscore >= 3 and fangscore <=4:
# return(3) # Tradwife
# elif anonscore <= 3 and fangscore >=3:
# return(2) # Doomer
# else:
# return(1) # Shooter
init python: