post file
Celaviegroup
Found a bug and fixed it.
Once Amy's shyness level hits 5, whenever the MC goes to the bathroom at 9am and waits outside, it sets the shyness level to 6. Once you get to 6, it sets it to 6. If you get to 7, it'll set it to 6, undoing all your progess the day before.
The error is in line 430 in Bathroom.rpy.
In order for this to work logically and not keep adding points unnecessarily, I figured it out. I selected the passages from line 412 to 431 and replaced it with this (and tested it). Also, after she gets shyness 6 or above, I deleted the image 2312 from the second block so she didn't look shy. Hope this helps!
Python:
"Wait outside" if shy >=5 and amy >= 60:
if shy == 5 and amy >= 60:
$ renpy.pause(2, hard = True)
show 2310 with dissolve
$ renpy.pause(1, hard = True)
show 2311 with dissolve
$ renpy.pause(1, hard = True)
show 2312 with dissolve
$ renpy.pause(1, hard = True)
show 2313 with dissolve
$ renpy.pause(1, hard = True)
show 2314 with dissolve
$ renpy.pause(1, hard = True)
show 2315 with dissolve
m "I am so proud of you"
show 2316 with dissolve
$ renpy.pause(1, hard = True)
$ hour += 1
$ amy += 1
$ shy = 6
jump main
elif shy >= 6 and amy >= 60:
$ renpy.pause(2, hard = True)
show 2310 with dissolve
$ renpy.pause(1, hard = True)
show 2311 with dissolve
$ renpy.pause(1, hard = True)
show 2313 with dissolve
$ renpy.pause(1, hard = True)
show 2314 with dissolve
$ renpy.pause(1, hard = True)
show 2315 with dissolve
m "I am so proud of you"
show 2316 with dissolve
$ renpy.pause(1, hard = True)
$ hour += 1
$ amy += 1
jump main