aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/plate.gd
diff options
context:
space:
mode:
authornokoe <nokoe@mailbox.org>2024-07-03 15:19:57 +0200
committernokoe <nokoe@mailbox.org>2024-07-03 15:19:57 +0200
commitc4ba88dd91c7e3ab8593542a7088b3b866a74300 (patch)
tree9b093158a86ba5acc166d038302249974911c983 /client/map/items/plate.gd
parent11d2b799739d6e4a0fa7496a74cf10bff925b6ea (diff)
downloadhurrycurry-c4ba88dd91c7e3ab8593542a7088b3b866a74300.tar
hurrycurry-c4ba88dd91c7e3ab8593542a7088b3b866a74300.tar.bz2
hurrycurry-c4ba88dd91c7e3ab8593542a7088b3b866a74300.tar.zst
pot and plate sounds
Diffstat (limited to 'client/map/items/plate.gd')
-rw-r--r--client/map/items/plate.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/plate.gd b/client/map/items/plate.gd
index 9d2fe538..73ffc5d9 100644
--- a/client/map/items/plate.gd
+++ b/client/map/items/plate.gd
@@ -21,8 +21,8 @@ func _init(owned_by_: Node3D):
add_child(load("res://map/items/plate.tscn").instantiate())
func setup_sounds():
- take_sound.setup([preload("res://map/sounds/plate_up.ogg")])
- put_sound.setup([preload("res://map/sounds/plate_down.ogg")])
+ take_sound.setup([preload("res://map/items/sounds/plate_take.ogg")])
+ put_sound.setup([preload("res://map/items/sounds/plate_put.ogg")])
static func base_position() -> Vector3:
return Vector3(0., 0.05, 0.)