Sleep alone too.
I was sleeping alone, and there were no events, other than the completion of the upgrade.I'm not saying that all of these cause issues independently or in concert, but it'll solve your problem for sure![]()
The problem seems to be a missing null check on line 88 of GardenPlot.rpy.
I changed this
Code:
if not plot['crop'].get('perennial') or remove_perennial:
Code:
if (not plot['crop'] is None and not plot['crop'].get('perennial')) or remove_perennial:
If anyone else gets this error and would like to avoid it, unzip the attached file and drop the "game" folder into your HaremHotel folder. If you do, you'll probably want to delete GardenPlot.rpy before you install any future game updates.