aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/pan.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2025-10-06 23:08:19 +0200
committernokoe <nokoe@mailbox.org>2025-10-06 23:08:53 +0200
commit41a176ee24495007131121efcfd19cce4613e40a (patch)
tree93d365460f6139de7713e9ebab427f2d7ef1e7e0 /client/map/items/pan.gd
parent176e6bc6c4c29bea3be2aceca99743b997c76c97 (diff)
downloadhurrycurry-41a176ee24495007131121efcfd19cce4613e40a.tar
hurrycurry-41a176ee24495007131121efcfd19cce4613e40a.tar.bz2
hurrycurry-41a176ee24495007131121efcfd19cce4613e40a.tar.zst
implement add_contents of remaining container items
Diffstat (limited to 'client/map/items/pan.gd')
-rw-r--r--client/map/items/pan.gd4
1 files changed, 1 insertions, 3 deletions
diff --git a/client/map/items/pan.gd b/client/map/items/pan.gd
index 11f80deb..497d8832 100644
--- a/client/map/items/pan.gd
+++ b/client/map/items/pan.gd
@@ -18,12 +18,10 @@ extends Item
var steam: CPUParticles3D = load("res://map/items/steam.tscn").instantiate()
-func _init(owned_by_: Node3D, contents: Array):
+func _init(owned_by_: Node3D):
super(owned_by_)
add_child(load("res://map/items/pan.tscn").instantiate())
base.add_child(steam)
- for c in contents:
- base.add_child(ItemFactory.produce(c, self))
func progress(position_: float, speed: float, warn: bool):
super(position_, speed, warn)