mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
Don't delay sound for so long after loading a level
This commit is contained in:
parent
af0d7928ef
commit
3a0d0452d8
1 changed files with 1 additions and 1 deletions
2
main.gd
2
main.gd
|
@ -93,7 +93,7 @@ func load_level(level_id):
|
|||
# Unmute the audio after a while, so that player can hear pop sounds for
|
||||
# nodes they create.
|
||||
var t = Timer.new()
|
||||
t.wait_time = 3
|
||||
t.wait_time = 1
|
||||
add_child(t)
|
||||
t.start()
|
||||
yield(t, "timeout")
|
||||
|
|
Loading…
Reference in a new issue