diff options
author | tpart <tpart120@proton.me> | 2024-07-01 18:34:27 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-07-01 18:34:47 +0200 |
commit | f698256b17ba0ee96182ca2b49fc41568c27e807 (patch) | |
tree | b2a872e1571fc1010af83b2fe2bc83ec6eefd3d9 /client/map/items | |
parent | 6303415068d6502316995376139c57b3d37c35ff (diff) | |
download | hurrycurry-f698256b17ba0ee96182ca2b49fc41568c27e807.tar hurrycurry-f698256b17ba0ee96182ca2b49fc41568c27e807.tar.bz2 hurrycurry-f698256b17ba0ee96182ca2b49fc41568c27e807.tar.zst |
Fix item sound playback system giving errors
Diffstat (limited to 'client/map/items')
-rw-r--r-- | client/map/items/item.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/items/item.gd b/client/map/items/item.gd index d5d2e1dc..d3acf200 100644 --- a/client/map/items/item.gd +++ b/client/map/items/item.gd @@ -27,6 +27,7 @@ func _init(owned_by_: Node3D): progress_instance.visible = false add_child(progress_instance) add_child(sound_instance) + sound_instance.volume_db = -16 base.position = base_position() add_child(base) owned_by = owned_by_ |