Thanks for the reply, loving the game. While you're at it; the stats screen for Brigitte at that point in the game crashes, there is no
If I might suggest a fix to avoid such crashes in the future, there's a lot of
Renpy will force those variables to booleans, so
genev_br_relationship
defined to compare to 0.If I might suggest a fix to avoid such crashes in the future, there's a lot of
if flag == False:
or if variable_number > 0:
in the script. You can omit the second part and just have if not flag:
or if variable_number:
.Renpy will force those variables to booleans, so
None
won't get compared to anything and crash the game.
Last edited: