diff options
Diffstat (limited to 'client/map/items/tomato.gd')
-rw-r--r-- | client/map/items/tomato.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/tomato.gd b/client/map/items/tomato.gd index 7ecff374..082b2b19 100644 --- a/client/map/items/tomato.gd +++ b/client/map/items/tomato.gd @@ -28,6 +28,6 @@ func progress(position_: float, speed: float, warn: bool): super(position_, speed, warn) cut.emitting = true -func finish(warn: bool): - super(warn) +func finish(): + super() cut.emitting = false |