This is for TACOS part6b you recently put on patreon
I found a error in day39-42.rpy file in line 3188
menu:
"Let them join and spend the evening with them.":
$ d41_sisters = True
jump d41_bar4
"Go watch Anne with Tom and Harry" if tom_harry = True:
jump d41_bar4
"I kinda just want to be alone." if tom_harry = False:
jump d41_bar5
it should be something like:
menu:
"Let them join and spend the evening with them.":
$ d41_sisters = True
jump d41_bar4
"Go watch Anne with Tom and Harry" if tom_harry:
jump d41_bar4
"I kinda just want to be alone." if not tom_harry:
jump d41_bar5