Just looking at some if the code (looking around for that consent and wanted pregnancy bug i keep hearing about) when i noticed an If and Elif statement had the same tests:
expasiontalk.gd lines 531 - 536
if person.exposed.chest == true && person.exposed.chestforced == false: choices.append('Can I cover up my ' + str(globals.expansion.getChest(person)) + "?") elif person.exposed.chest == true && person.exposed.chestforced == false: choices.append('Why did you ruin my shirt?') choices.append('Why can I not wear a shirt?') choices.append('Why did you take away my shirt?')
I am pretty sure "person.exposed.chestforced" should be true on line 533 or else the block would never trigger (and changing "person.exposed.chest" to false doesn't particularly make sense given the output
Edit: Either the entire section of code has some not updated elif statements or the elifs of lines 533, 539, and 545 have been purposefully disabled