diff options
author | nokoe <nokoe@mailbox.org> | 2024-06-27 14:52:49 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-06-27 14:52:49 +0200 |
commit | 7c8bff5a0b853ec0eb4a2e9a9a7a2be2981e7e24 (patch) | |
tree | ea1f91598a0f0647c0f6f267ee088ea8e5b49c25 /client/map/items/pot.gd | |
parent | b0ec90392eac2c99b54e57e88e6b6cc8ecef890c (diff) | |
download | hurrycurry-7c8bff5a0b853ec0eb4a2e9a9a7a2be2981e7e24.tar hurrycurry-7c8bff5a0b853ec0eb4a2e9a9a7a2be2981e7e24.tar.bz2 hurrycurry-7c8bff5a0b853ec0eb4a2e9a9a7a2be2981e7e24.tar.zst |
add missing items
Diffstat (limited to 'client/map/items/pot.gd')
-rw-r--r-- | client/map/items/pot.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index ac865329..89cbf4c4 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -20,7 +20,7 @@ var steam: CPUParticles3D = load("res://map/items/steam.tscn").instantiate() func _init(owned_by_: Node3D): super(owned_by_) - base.add_child(load("res://map/items/pot.tscn").instantiate()) + add_child(load("res://map/items/pot.tscn").instantiate()) base.add_child(steam) func progress(p: float, warn: bool): |