summaryrefslogtreecommitdiff
path: root/client/player/player.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/player/player.gd')
-rw-r--r--client/player/player.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/player/player.gd b/client/player/player.gd
index 43d7dd7f..17db85a9 100644
--- a/client/player/player.gd
+++ b/client/player/player.gd
@@ -107,9 +107,9 @@ func remove_item() -> Item:
character.holding = false
return i
-func progress(p: float, warn: bool):
+func progress(position__: float, speed: float, warn: bool):
if hand != null:
- hand.progress(p, warn)
+ hand.progress(position__, speed, warn)
func finish(warn: bool):
if hand != null: