Open /game/script.rpy and go to line 417I'm getting a crash after almost any action that advances time. I can ignore it and continue but some reason none of the employees show up to work even on weekdays now.
if day % y == 5 or day % 7 == 6: #TODO: add support for expanding workdays
Change the line to the followingif day % 7 == 5 or day % 7 == 6: #TODO: add support for expanding workdays
Save and re-open the game. Seems to have fixed the time advance crashes for me.