- Jan 19, 2020
- 12,382
- 48,807
Bug Report
CHAQUINN 0, hey bud, check this conditional in
Again, the initial If conditional will ALWAYS pass since the If is always True and the next Elif will never be processed and it's resulting Keyla affection will never be accounted for (nor the dialogue seen by the Player of course):
So, if you want the Player to always have the sequence post the If conditional, then change the Elif to If so it can be processed as well. But I'm not sure your intention as I can see a minimum of three different scenarios you may have been wanting to perform here.
CHAQUINN 0, hey bud, check this conditional in
mc_street
to insure it's doing what you want since it's basically not doing anything at all:
Python:
if julia_route == True or julia_route == False: # SanchoNote: This will ALWAYS return True
...
menu:
"Go with her":
$ch1_julia_parkd = True
...
Python:
elif ch1_julia_kissed_restaurant == False: # SanchoNote: This will never be processed due to the above If conditional issue
...