From c488222abeef0df694067c7f918f261cab01f691 Mon Sep 17 00:00:00 2001 From: KeenShayne Date: Fri, 20 Aug 2021 19:21:53 -0400 Subject: [PATCH] Fixes dumb code mistake You kinda need to call input for users to input... --- code/modules/tgui/modules/appearance_changer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/tgui/modules/appearance_changer.dm b/code/modules/tgui/modules/appearance_changer.dm index afd2b50078d..369cd9f2290 100644 --- a/code/modules/tgui/modules/appearance_changer.dm +++ b/code/modules/tgui/modules/appearance_changer.dm @@ -92,7 +92,7 @@ if(can_change(APPEARANCE_RACE) && (params["race"] in valid_species)) if(target.change_species(params["race"])) if(params["race"] == "Custom Species") - target.custom_species = (usr,"Custom Species name:","Species Name") + target.custom_species = input(usr,"Custom Species name:","Species Name") cut_data() generate_data(usr) changed_hook(APPEARANCECHANGER_CHANGED_RACE)