disable music when game starts from debug mode

This commit is contained in:
bleeptrack 2021-02-11 10:48:36 +01:00
parent 254064dc00
commit 328122823b

View file

@ -18,6 +18,8 @@ var state = {}
func _ready():
if OS.has_feature("standalone"):
get_tree().set_auto_accept_quit(false)
else:
game.toggle_music()
global_shell = Shell.new()