diff options
Diffstat (limited to 'client/map/items/strawberry.gd')
-rw-r--r-- | client/map/items/strawberry.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/strawberry.gd b/client/map/items/strawberry.gd index ef9abb64..e663464f 100644 --- a/client/map/items/strawberry.gd +++ b/client/map/items/strawberry.gd @@ -24,8 +24,8 @@ 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): |