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")