diff options
Diffstat (limited to 'client/map/items/item.gd')
| -rw-r--r-- | client/map/items/item.gd | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/client/map/items/item.gd b/client/map/items/item.gd index 466348fe..a42edc39 100644 --- a/client/map/items/item.gd +++ b/client/map/items/item.gd @@ -44,7 +44,8 @@ func _ready():  	position = owned_by.global_position  func _process(delta): -	position = Global.interpolate(position, owned_by.global_position, delta * 30.0) +	var ispeed = 30.0 if owned_by.get_parent().get_parent() is Player else 10. +	position = G.interpolate(position, owned_by.global_position, delta * ispeed)  func progress(p: float, warn: bool):  	progress_instance.visible = true | 
