diff options
Diffstat (limited to 'client/map/progress.gd')
-rw-r--r-- | client/map/progress.gd | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/client/map/progress.gd b/client/map/progress.gd index 1a8bb3c0..d78c9e66 100644 --- a/client/map/progress.gd +++ b/client/map/progress.gd @@ -47,8 +47,6 @@ func update(new_position: float, new_speed: float, new_warn: bool): var mat: ShaderMaterial = get_active_material(0) mat.set_shader_parameter("progress", position_) mat.set_shader_parameter("bad", warn) - - if warn and speed > 0.: ding_node.play_random() func _process(delta: float): position_ += delta * speed |