Fixed Bizzy 'reset' bug in 0.9.114-PUBLIC-ELECTRON#5487

Issue is marked as fixed.
Status
Not open for further replies.

sargentmayhem

Member
Apr 8, 2020
13
0
32
Doing Bizzy's breast route, I'm at stage 4. When I first walk into her room, everything is fine. However, if I open her Talk menu and click Back, her progress resets back to stage 1. The Appearance option says she's flat-chested, and Breasts lets me give titblossom, moving her from stage 4 to stage 2. Sex scenes still play out like she's Stage 4.

If I Leave, and come back in, Appearance and Breasts are restored back to Stage 4, until I open her Talk menu again.

Playing using the Windows download
 
Last edited:

sargentmayhem

Member
Apr 8, 2020
13
0
32
Here you go.
 

Attachments

  • Donut (H) - 11Hrs 0Mins, 935 Days - Tavros Station, Kalas-bizzybug.json
    916.4 KB · Views: 3

Wafflesnake

Well-Known Member
Nov 4, 2023
400
122
23
out of curiosity, did you happen to do the very first flat route talk with bizzy prior to going down the breast route?

edit: i believe this is what causes the issue. following OP's instructions of backing out of the talk menu does display bizzy's stage 1 appearance menu. backing out entirely from bizzy's interaction and reentering her apartment displays everything correctly however.

looking specifically at that particular back button, it redirects to bizzyMenu(), which first checks if flags["BIZZY_FLAT"] >= 1. the console shows on this save that the flag is currently equal to 1. the only place in the code that sets that to 1 is in the initial flat talk with bizzy, found under tellBizzyFlatIzGudCuzItIs(), however, this conversation gives the option to Persist or Drop It. Presumably, OP chose to Drop It prior to going through with the breast route. I believe the flat flag should probably only be set in the following Persist dialogue as that is where the player actually commits to the flat route.

i was able to reproduce the behavior after resetting bizzy with cheats.
 
Last edited:

sargentmayhem

Member
Apr 8, 2020
13
0
32
Yeah, I'm pretty sure I did pick "Drop It" when I wasn't sure if I wanted to go for the boob route or flat route.
 

Wafflesnake

Well-Known Member
Nov 4, 2023
400
122
23
good to know. regardless you can simply back out all the way from bizzy's apartment without selecting anything and she'll function fine. if you want to save edit delete the value for BIZZY_FLAT. if you want to use the console, type flags["BIZZY_FLAT"] = undefined
 

Gedan

BUTTS BUTTS BUTTS
Staff member
Aug 26, 2015
8,008,966
8,008,325
Dug into this, Waffle is basically on the money with the source of the problem kind of. The FLAT flag is kinda misued in a few places, and actually fixing this issue is to make the backMenu only care about the FLAT flag if its >= 2, just like the apartment handler. I found a few other weird misuses of the FLAT flag too that I've cleaned up, where we were just looking to see if the flag was set at all, instead of determining if it was a positive decision or disabled.
 
Status
Not open for further replies.