From 3a0d0452d8c8f8d9c04264bbbc7edf06032dc088 Mon Sep 17 00:00:00 2001 From: Sebastian Morr Date: Thu, 22 Oct 2020 18:05:25 +0200 Subject: [PATCH] Don't delay sound for so long after loading a level --- main.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.gd b/main.gd index d226d9d..7d5c7cb 100644 --- a/main.gd +++ b/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")