Zargon_games I ran into an error when starting Chapter 14 (Public version from itch). The game immediately crashes to an error screen claiming that "player_name2" is not defined.
It looks like the code from chapter14.rpy that is causing the problem is:
Code:
if player_name2 == "daddy":
$ player_name2 == "Daddy"
I am not positive, but it looks like the variable "player_name2" is exclusive to the Emma path. Since I am NOT on the Emma path, that would explain why the variable was never set.
I solved the problem myself by simply defining the variable before the IF statement:
Once I did this the rest of the update played fine all the way to the end. This was more of a bandaid fix for my personal game than an actual solution, since you obviously would not want to overwrite the value of the variable if its already been set to something else by the player.