diff options
Diffstat (limited to 'client/map/items/food_processor.gd')
-rw-r--r-- | client/map/items/food_processor.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/food_processor.gd b/client/map/items/food_processor.gd index ad4a6349..4a73cac5 100644 --- a/client/map/items/food_processor.gd +++ b/client/map/items/food_processor.gd @@ -37,8 +37,8 @@ func progress(position_: float, speed: float, warn: bool): -10. ) -func finish(warn: bool): - super(warn) +func finish(): + super() if sound_id != null: processing.emitting = false Sound.item_finished(sound_id) |