aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/strawberry.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/items/strawberry.gd')
-rw-r--r--client/map/items/strawberry.gd8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/map/items/strawberry.gd b/client/map/items/strawberry.gd
index ef9abb64..f2a1165a 100644
--- a/client/map/items/strawberry.gd
+++ b/client/map/items/strawberry.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