aboutsummaryrefslogtreecommitdiff
path: root/client/map
diff options
context:
space:
mode:
Diffstat (limited to 'client/map')
-rw-r--r--client/map/items/item.gd2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map/items/item.gd b/client/map/items/item.gd
index 4847313e..c11167eb 100644
--- a/client/map/items/item.gd
+++ b/client/map/items/item.gd
@@ -97,7 +97,7 @@ func progress(position_: float, speed: float, warn: bool):
# Progress gets called with position 1.0 when the task is finished
var checkmark: CPUParticles3D = CHECKMARK.instantiate()
owned_by.add_child(checkmark)
- checkmark.position.y = 1
+ checkmark.position.y = 0.5
checkmark.emitting = true
var ding_sound := AudioStreamPlayer3D.new()