diff options
Diffstat (limited to 'client/player')
| -rw-r--r-- | client/player/player.gd | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/client/player/player.gd b/client/player/player.gd index 17db85a9..d5837d47 100644 --- a/client/player/player.gd +++ b/client/player/player.gd @@ -111,9 +111,9 @@ func progress(position__: float, speed: float, warn: bool):  	if hand != null:  		hand.progress(position__, speed, warn) -func finish(warn: bool): +func finish():  	if hand != null: -		hand.finish(warn) +		hand.finish()  func take_item(tile: Tile):  	if hand != null:  |