From e2feee16f34fa4fb7315d361ceba901a8abd4291 Mon Sep 17 00:00:00 2001 From: FalloutFalcon Date: Tue, 30 Jun 2026 01:31:32 -0500 Subject: [PATCH] testing --- code/controllers/subsystem/ticker.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm index adcafbb87dea..92681c5c4c62 100644 --- a/code/controllers/subsystem/ticker.dm +++ b/code/controllers/subsystem/ticker.dm @@ -887,10 +887,13 @@ SUBSYSTEM_DEF(ticker) gather_newscaster() //called here so we ensure the log is created even upon admin reboot if(!round_end_sound) round_end_sound = choose_round_end_song() + logger.Log(LOG_CATEGORY_DEBUG, "Chose [round_end_sound] for end round sound.") for(var/mob/M in GLOB.player_list) + logger.Log(LOG_CATEGORY_DEBUG, "Attemping to play end sound to [M].") var/pref_volume = M.client.prefs.read_preference(/datum/preference/numeric/volume/sound_midi) if(pref_volume > 0) SEND_SOUND(M.client, sound(round_end_sound, volume = pref_volume)) + logger.Log(LOG_CATEGORY_DEBUG, "Played [round_end_sound] to [M] with volume [pref_volume].") text2file(login_music, "data/last_round_lobby_music.txt")