Here are some bugs I've found in the scripts (v1.62e):
Girl_HJ.rpy, line 3420:
elif Ch_Focus is BetsyX): # causing a crash on Footjob with Betsy
script Functions.rpy, line 9586:
if not Player.Male and Total: # Total = TotalGirls? It once crashed during a test as female protagonist on Sex_Over event but can't reproduce anymore.
script Scenes.rpy: can't point a finger on a line here, but choosing "Could you finger me?" in the sex menu causes immediately a crash as female protagonist.
script SDialog.rpy, line 188:
if GirlA.Hand > 2: # this should rather check for GirlA.Finger during a "finger" trigger event as female protagonist
Can't name a file but I've noticed during an addiction event that after GirlA sends away GirlB from the room to talk with you, you somehow start kissing GirlB instead of GirlA. Maybe I can catch this again to better investigate.
script Orgasm.rpy, line 4107, 4903, 4911:
"dripping our of ... ass" # yeah, three times our instead of out of asses here
Wanda_Scenes.rpy: Wanda doesn't append the player's name to her petname list yet. The moment you get a new pet name and accept it, the player name is lost forever, so she will call you only "Bro" when asking for the player's name.
WandaX.Petnames.append(Player.Name) # this line is missing anywhere. You can add this by console command to fix this issue as such append action usually only happen during a character's introduction event.