Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(+1)

Okay, came across a weird bug and I can only assume this is what's happening

Did Sol's Stage 4 event (cafe visit), then gave Kristy her first brew, then attempt to return to the house, end up at the beach shop...

Roll back, Beach Shop is still the Beach Shop, House is also the Beach Shop...

So, I'm guessing that the Cafe Event use to teleport you back to the Beach Shop, the event manager has it written as a destination, and since the House has a bunch of event flags, when returning it is reading the teleport and loading the Beach Shop

That is the only thing I can think of, as the House appeared to be the only location effected

Thanks for letting me know about this! This was a pretty substantial issue after I dug into it, and required some recoding of the entire map system. This is what was happening:

day_loop

 └ menu_leave_house         (you picked Beach Shop here)

    └ location_beach_shop    ← still open, waiting

       └ location_travel     (you hit "Leave", picked College)

          └ location_college

             └ location_cafeteria   ← you're here, feeding Kristy


Leaving one location re-opened the map on top of the place you were still in, so the game kept a stack of old locations underneath you. trying to go home surfaced the bottom one (the Beach Shop) instead of the house.