diff options
author | nokoe <nokoe@mailbox.org> | 2024-09-27 21:24:03 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-09-27 21:25:01 +0200 |
commit | 6ffcb0e03a6c2af11547de900eed1f542bc0b40b (patch) | |
tree | 46601e6245269ad1ec4e7d4bd7724dd6f2e2881b /client/map/items/item.gd | |
parent | b68dc5d1d229e8bcdf655c99daf3a9e6ecac8aa7 (diff) | |
download | hurrycurry-6ffcb0e03a6c2af11547de900eed1f542bc0b40b.tar hurrycurry-6ffcb0e03a6c2af11547de900eed1f542bc0b40b.tar.bz2 hurrycurry-6ffcb0e03a6c2af11547de900eed1f542bc0b40b.tar.zst |
add frying sound again
Diffstat (limited to 'client/map/items/item.gd')
-rw-r--r-- | client/map/items/item.gd | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/map/items/item.gd b/client/map/items/item.gd index 2d801096..5c31d70f 100644 --- a/client/map/items/item.gd +++ b/client/map/items/item.gd @@ -79,6 +79,8 @@ func progress(position_: float, speed: float, warn: bool): func finish(): progress_instance.visible = false + if sound_id != null: + Sound.item_finished(sound_id) func setup_sounds(): take_sound.setup([preload("res://map/items/sounds/generic_take.ogg")]) |