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/food_processor.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/food_processor.gd')
| -rw-r--r-- | client/map/items/food_processor.gd | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd index 05b783c1..38adf5aa 100644 --- a/client/map/items/food_processor.gd +++ b/client/map/items/food_processor.gd @@ -77,9 +77,7 @@ func progress(position_: float, speed: float, warn: bool):  func finish():  	super() -	if sound_id != null: -		processing.emitting = false -		Sound.item_finished(sound_id) +	processing.emitting = false  static func base_position() -> Vector3:  	return Vector3(0., 0.4, 0.)  |