summaryrefslogtreecommitdiff
path: root/client/map/items/pot.gd
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-03 16:55:14 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-03 16:55:14 +0200
commit095db9be074577c0b46fa0ba080bfbd4f37c8f83 (patch)
tree27efe2ecfe60f3a80a9e16e731b39f7fa59ad84c /client/map/items/pot.gd
parent074c37aae5b25844a9e85e89b30893042c9e6059 (diff)
parent872568d39a6e5e1334f02a384491b7645e65919d (diff)
downloadhurrycurry-095db9be074577c0b46fa0ba080bfbd4f37c8f83.tar
hurrycurry-095db9be074577c0b46fa0ba080bfbd4f37c8f83.tar.bz2
hurrycurry-095db9be074577c0b46fa0ba080bfbd4f37c8f83.tar.zst
Merge branch 'master' of https://codeberg.org/metamuffin/undercooked
Diffstat (limited to 'client/map/items/pot.gd')
-rw-r--r--client/map/items/pot.gd4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd
index 89cbf4c4..e802b7e9 100644
--- a/client/map/items/pot.gd
+++ b/client/map/items/pot.gd
@@ -35,5 +35,9 @@ func finish(warn: bool):
super(warn)
steam.emitting = false
+func setup_sounds():
+ take_sound.setup([preload("res://map/items/sounds/pot_take.ogg")])
+ put_sound.setup([preload("res://map/items/sounds/pot_put.ogg")])
+
static func base_position() -> Vector3:
return Vector3(0., 0.015, 0.)