diff options
Diffstat (limited to 'client/map/tiles/tile.gd')
| -rw-r--r-- | client/map/tiles/tile.gd | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/client/map/tiles/tile.gd b/client/map/tiles/tile.gd index 70cecfd8..be78883e 100644 --- a/client/map/tiles/tile.gd +++ b/client/map/tiles/tile.gd @@ -57,13 +57,13 @@ static func interact_target() -> Vector3:  func interact():  	pass -func progress(p: float, warn: bool): +func progress(position_: float, speed: float, warn: bool):  	if item != null: -		item.progress(p, warn) +		item.progress(position_, speed, warn) -func finish(warn: bool): +func finish():  	if item != null: -		item.finish(warn) +		item.finish()  func put_item(i: Item):  	if item != null: | 
