From 956b989af6e1b7f2f5fe638c635cb75503547809 Mon Sep 17 00:00:00 2001 From: Adrer Date: Wed, 17 Apr 2024 06:24:13 +0200 Subject: [PATCH] Fixes voice changer voice selection (#25145) Co-authored-by: adrermail@gmail.com --- code/game/objects/items/devices/voice_changer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/voice_changer.dm b/code/game/objects/items/devices/voice_changer.dm index e7f34daa961..26cd3ad6ff1 100644 --- a/code/game/objects/items/devices/voice_changer.dm +++ b/code/game/objects/items/devices/voice_changer.dm @@ -34,7 +34,7 @@ A.UpdateButtons() /obj/item/voice_changer/proc/set_voice(mob/user) - var/chosen_voice = input("What voice would you like to mimic? Leave this empty to use the voice on your ID card.", "Set Voice Changer", voice, user) + var/chosen_voice = tgui_input_text(user, "What voice would you like to mimic? Leave this empty to use the voice on your ID card.", "Set Voice Changer") if(!chosen_voice) voice = null to_chat(user, "You are now mimicking the voice on your ID card.")