There's a bug for anyone who picks "Ask for some time." in the conversation with Yuna at the start of S01E02.
All of the dialogue checking the results of those choices are in the structure:
On the unsure path, you will always fall into the 2nd case instead of the 3rd. These should be reordered to
or
All of the dialogue checking the results of those choices are in the structure:
Code:
if yudate is True:
# dialogue for Yuna path
elif yudate is False:
# dialogue for rejecting Yuna path
elif yudateunsure is True:
# dialogue for unsure path
Code:
if yudate:
# dialogue for Yuna path
elif yudateunsure:
# dialogue for unsure path
else:
# dialogue for rejecting Yuna path
Code:
if yudateunsure:
# dialogue for unsure path
elif yudate:
# dialogue for Yuna path
else:
# dialogue for rejecting Yuna path