From 9eb83d159857b9e1dff58bbf1b09894d0f482220 Mon Sep 17 00:00:00 2001 From: JamieH Date: Tue, 10 Oct 2017 19:13:51 +0100 Subject: [PATCH] Fix a bug in the new lobby music system (#31477) * Fix a bug in the new lobby music system * Update ticker.dm * ... --- code/controllers/subsystem/ticker.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index 02a9808f48..50e3dab667 100755 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -118,8 +118,10 @@ SUBSYSTEM_DEF(ticker) if(isemptylist(music)) music = world.file2list(ROUND_START_MUSIC_LIST, "\n") - - login_music = pick(music) + login_music = pick(music) + else + login_music = "config/title_music/sounds/[pick(music)]" + if(!GLOB.syndicate_code_phrase) GLOB.syndicate_code_phrase = generate_code_phrase()