BarkMan

New Member
Jul 15, 2024
6
17
I'm getting this error on a new, fresh install, with no saves, when I try to develop the land behind the garden seating area, specifically the morning the upgrade completes:

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 44662, in <module>
  File "game/scripts/Garden/GardenPlot.rpy", line 88, in reset_plot
AttributeError: 'NoneType' object has no attribute 'get'

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 965, in script call
  File "script.rpyc", line 44504, in script call
  File "script.rpyc", line 39594, in script call
  File "script.rpyc", line 44655, in script
  File "renpy/ast.py", line 928, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
  File "renpy/python.py", line 2245, in py_exec_bytecode
    exec(bytecode, globals, locals)
  File "game/script.rpy", line 44662, in <module>
  File "game/scripts/Garden/GardenPlot.rpy", line 88, in reset_plot
AttributeError: 'NoneType' object has no attribute 'get'

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
Harem Hotel v0.18.1
Mon Nov 11 08:53:34 2024
 

Mxiio

Member
Jul 30, 2024
393
330
I'm getting this error on a new, fresh install, with no saves, when I try to develop the land behind the garden seating area, specifically the morning the upgrade completes:

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 44662, in <module>
  File "game/scripts/Garden/GardenPlot.rpy", line 88, in reset_plot
AttributeError: 'NoneType' object has no attribute 'get'

-- Full Traceback ------------------------------------------------------------

Full traceback:
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 19501, in script call
  File "script.rpyc", line 965, in script call
  File "script.rpyc", line 44504, in script call
  File "script.rpyc", line 39594, in script call
  File "script.rpyc", line 44655, in script
  File "renpy/ast.py", line 928, in execute
    renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
  File "renpy/python.py", line 2245, in py_exec_bytecode
    exec(bytecode, globals, locals)
  File "game/script.rpy", line 44662, in <module>
  File "game/scripts/Garden/GardenPlot.rpy", line 88, in reset_plot
AttributeError: 'NoneType' object has no attribute 'get'

Windows-10-10.0.19041
Ren'Py 7.4.11.2266
Harem Hotel v0.18.1
Mon Nov 11 08:53:34 2024
Cancel your wake-up call while you build stuff :)
 
  • Like
Reactions: TheDevian

Laurifer

New Member
Jul 9, 2020
5
0
I'm playing on a pretty old save and seem to be stuck? Android is at relationship level 20 but apparently that event has been removed from the game. Is there any kind of fix for this or am I going to have to start a new game?
 

ZenoMod

Well-Known Member
Nov 12, 2022
1,269
1,580
I'm playing on a pretty old save and seem to be stuck? Android is at relationship level 20 but apparently that event has been removed from the game. Is there any kind of fix for this or am I going to have to start a new game?
I think there's something posted God knows where.

Can you access the console and set that variable by hand?
 

Mxiio

Member
Jul 30, 2024
393
330
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.
 

Allmoido

New Member
Jul 26, 2018
12
24
I haven't played in probably almost a year now, how much new content have we had through 2024 or late 2023?

is it worth replaying now or just coming back to it again next year :LOL:
About 20 minutes or so. It'll be worth replaying in a few years.
 

BarkMan

New Member
Jul 15, 2024
6
17
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
1
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!
 
  • Like
Reactions: jarsc
4.70 star(s) 482 Votes