diff options
Diffstat (limited to 'client/map/items/tomato.gd')
| -rw-r--r-- | client/map/items/tomato.gd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/map/items/tomato.gd b/client/map/items/tomato.gd index 97cd668c..082b2b19 100644 --- a/client/map/items/tomato.gd +++ b/client/map/items/tomato.gd @@ -24,10 +24,10 @@ func _init(owned_by_: Node3D): base.add_child(cut) cut.color = Color(1., 0., 0.) -func progress(p: float, warn: bool): - super(p, warn) +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 |