diff options
author | nokoe <nokoe@mailbox.org> | 2024-07-07 21:41:59 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-07-07 21:42:26 +0200 |
commit | b9807def2cc76d5d389bf196c9f0b455c143ab48 (patch) | |
tree | 23bb6e433d91ada052198b6c335eb6a7746ba904 /client/map/items/food_processor.gd | |
parent | cc3baa5f1aa27513aa0de90b24d643ccbc30a7b6 (diff) | |
download | hurrycurry-b9807def2cc76d5d389bf196c9f0b455c143ab48.tar hurrycurry-b9807def2cc76d5d389bf196c9f0b455c143ab48.tar.bz2 hurrycurry-b9807def2cc76d5d389bf196c9f0b455c143ab48.tar.zst |
item volume level
Diffstat (limited to 'client/map/items/food_processor.gd')
-rw-r--r-- | client/map/items/food_processor.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd index 588777ff..6a04da00 100644 --- a/client/map/items/food_processor.gd +++ b/client/map/items/food_processor.gd @@ -32,7 +32,8 @@ func progress(p: float, warn: bool): sound_id = Sound.item_progress( self, preload("res://map/items/sounds/food_processor_running.ogg"), - preload("res://map/items/sounds/food_processor_stopping.ogg") + preload("res://map/items/sounds/food_processor_stopping.ogg"), + -10. ) func finish(warn: bool): |