From ed2b781219bdeefdb0182f488e297a32300c2c83 Mon Sep 17 00:00:00 2001 From: Will <7099514+Willburd@users.noreply.github.com> Date: Wed, 9 Jul 2025 23:39:07 -0400 Subject: [PATCH] use correct list when changing voices using the verb (#17986) --- code/modules/mob/living/living_vr.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/mob/living/living_vr.dm b/code/modules/mob/living/living_vr.dm index f7833b462aa..6fccfadbf8c 100644 --- a/code/modules/mob/living/living_vr.dm +++ b/code/modules/mob/living/living_vr.dm @@ -178,8 +178,7 @@ set desc = "Sets your voice style!" set category = "OOC.Game Settings" - var/list/possible_voice_types = get_talk_sound() - var/choice = tgui_input_list(src, "Which set of sounds would you like to use for your character's speech sounds?", "Voice Sounds", possible_voice_types) + var/choice = tgui_input_list(src, "Which set of sounds would you like to use for your character's speech sounds?", "Voice Sounds", SSsounds.talk_sound_map) if(!choice) voice_sounds_list = DEFAULT_TALK_SOUNDS voice_sounds_list = get_talk_sound(choice)