diff options
author | tpart <tpart120@proton.me> | 2024-09-16 13:58:58 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-16 13:58:58 +0200 |
commit | dfda0d0aeb8a50c6d7bdfad8a462629a500dd114 (patch) | |
tree | 80c2550a81faa0d125f56ea6b9e0a18135d6aeba /client/map/items/pan.gd | |
parent | 7612bae40de7f9494ebca230965989efada60778 (diff) | |
download | hurrycurry-dfda0d0aeb8a50c6d7bdfad8a462629a500dd114.tar hurrycurry-dfda0d0aeb8a50c6d7bdfad8a462629a500dd114.tar.bz2 hurrycurry-dfda0d0aeb8a50c6d7bdfad8a462629a500dd114.tar.zst |
Fix: Pot and pan items invisible
Diffstat (limited to 'client/map/items/pan.gd')
-rw-r--r-- | client/map/items/pan.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/pan.gd b/client/map/items/pan.gd index af245316..1aa80da0 100644 --- a/client/map/items/pan.gd +++ b/client/map/items/pan.gd @@ -24,7 +24,7 @@ func _init(owned_by_: Node3D, contents: Array): add_child(load("res://map/items/pan.tscn").instantiate()) base.add_child(steam) for c in contents: - base.add_child(ItemFactory.produce(c, owned_by_)) + base.add_child(ItemFactory.produce(c, self)) func progress(position_: float, speed: float, warn: bool): super(position_, speed, warn) |