Update level.gd

This commit is contained in:
MarcEricMartel 2023-10-11 04:21:58 -04:00
parent 3a80ba7646
commit 7ae6fac893

View File

@ -17,7 +17,7 @@ func _process(delta):
if countdown > 1: if countdown > 1:
countdown -= 1 countdown -= 1
time = $Music.get_playback_position() time = $Music.get_playback_position()
$Time.text = str(length - time) $Time.text = str(length - time - 1)
pass pass
func win_screen(): func win_screen():