diff options
Diffstat (limited to 'client/map/items/bread.gd')
-rw-r--r-- | client/map/items/bread.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/bread.gd b/client/map/items/bread.gd index b5143c53..d869aeb1 100644 --- a/client/map/items/bread.gd +++ b/client/map/items/bread.gd @@ -25,8 +25,8 @@ func _init(owned_by_: Node3D): steam.color = Color(.6, .6, .6, .4) base.add_child(steam) -func progress(p: float, warn: bool): - super(p, warn) +func progress(position_: float, speed: float, warn: bool): + super(position_, speed, warn) steam.emitting = warn func finish(warn: bool): |