diff options
Diffstat (limited to 'client/map/items')
-rw-r--r-- | client/map/items/tomato.gd | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/client/map/items/tomato.gd b/client/map/items/tomato.gd index 082b2b19..65b7fc28 100644 --- a/client/map/items/tomato.gd +++ b/client/map/items/tomato.gd @@ -26,8 +26,4 @@ func _init(owned_by_: Node3D): func progress(position_: float, speed: float, warn: bool): super(position_, speed, warn) - cut.emitting = true - -func finish(): - super() - cut.emitting = false + cut.emitting = speed > 0 |