diff --git a/game/src/storyline.rpy b/game/src/storyline.rpy index c663640..a87f9de 100644 --- a/game/src/storyline.rpy +++ b/game/src/storyline.rpy @@ -1,4 +1,6 @@ init -1 python: + # This function name is a misnomer, this actually counts endings as seen when the player reaches the ending cards when this is called + # And it's done in the most retarded way possible because someone thought it'd be funny. def ending_image(): #0b0000, DCBA, flash the bits with |=, check with & endings = 0b0000 @@ -26,7 +28,7 @@ init python: # We're at an ending else: - ending_image() + ending_image() # Count endings that have seen the ending cards as seen if ending_route_number == 1: renpy.quit()