use correct list when changing voices using the verb (#17986)

This commit is contained in:
Will
2025-07-09 23:39:07 -04:00
committed by GitHub
parent 1c35a4131c
commit ed2b781219
+1 -2
View File
@@ -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)