aboutsummaryrefslogtreecommitdiff
path: root/client/map/items/pot.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/map/items/pot.gd')
-rw-r--r--client/map/items/pot.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd
index dd5a6c6f..7a4fe40b 100644
--- a/client/map/items/pot.gd
+++ b/client/map/items/pot.gd
@@ -23,8 +23,8 @@ func _init(owned_by_: Node3D):
add_child(load("res://map/items/pot.tscn").instantiate())
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 = true
if warn:
steam.color = Color(.2, .2, .2)