What, if anything, does the following code do? I don't see other references to this variable.
var newclass = dateclass.new() newclass.sex = globals.player.sex newclass.name = globals.player.name_short() newclass.person = globals.player dateclassarray.append(newclass) newclass = dateclass.new() newclass.person = person newclass.sex = person.sex newclass.name = person.name_short() dateclassarray.append(newclass)
I'm trying to figure out how to make the "dating" more interesting without breaking too much in the process. Don't have a lot of spoons for troubleshooting right now.