aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/pot_items.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/items/pot_items.gd')
-rw-r--r--client/map/items/pot_items.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/pot_items.gd b/client/map/items/pot_items.gd
index fae2ccaa..25fd74d3 100644
--- a/client/map/items/pot_items.gd
+++ b/client/map/items/pot_items.gd
@@ -51,8 +51,8 @@ class RawSteakP extends Pot:
super(owned_by_)
base.add_child(preload("res://map/items/raw_steak.tscn").instantiate())
- func progress(p: float, warn: bool):
- super(p, warn)
+ func progress(position_: float, speed: float, warn: bool):
+ super(position_, speed, warn)
if sound_id == null:
sound_id = Sound.item_progress(self, preload("res://map/items/sounds/frying.ogg"), null)