Mxiio

Member
Jul 30, 2024
201
146
Cancel your wake-up call while you build stuff :)
I'll expand a bit on my previous answer since it didn't resolve your issue :)
Anything that resolves in the morning should be avoided if you want to make sure to succeed the builds. That includes things like mail orders, plants that are growing, sleeping with someone and/or having a wake-up service.
I'm not saying that all of these cause issues independently or in concert, but it'll solve your problem for sure :p

I used to work as an admin for a major company, with tons of off-site servers. Golden rule when you don't know the exact problem. Fix it all, all at once.
 

BarkMan

New Member
Jul 15, 2024
6
12
Sleep alone too.
I'm not saying that all of these cause issues independently or in concert, but it'll solve your problem for sure :p
I was sleeping alone, and there were no events, other than the completion of the upgrade.

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:
to this
Code:
if (not plot['crop'] is None and not plot['crop'].get('perennial')) or remove_perennial:
to eliminate the error.

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.
 

keksaurus

New Member
Jun 10, 2020
2
0
The game is very good so far, my only gripes are how many clicks it takes to get to the garden and how slow it is to grind for the lustful trait. Can't wait to see what's in the next update!
 
4.70 star(s) 468 Votes