From dc7481c8a4dc14854d7a6ffa4e774ae495b72dab Mon Sep 17 00:00:00 2001 From: quotefox <49098813+quotefox@users.noreply.github.com> Date: Tue, 19 Nov 2019 07:03:19 +0000 Subject: [PATCH] fix --- code/modules/client/preferences.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 53115d96..d992df6f 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -1539,18 +1539,18 @@ GLOBAL_LIST_EMPTY(preferences_datums) new_hair_style = input(user, "Choose your character's hair style:", "Character Preference") as null|anything in GLOB.hair_styles_list if(new_hair_style) hair_style = new_hair_style - if(new_hair_style == "Tail Hair" && clientckey <> "duote3ox") + if(new_hair_style == "Tail Hair" && clientckey <> "quotefox") hair_style = "Bald" if("next_hair_style") hair_style = next_list_item(hair_style, GLOB.hair_styles_list) - if(hair_style == "Tail Hair" && clientckey <> "duote3ox") + if(hair_style == "Tail Hair" && clientckey <> "quotefox") hair_style = "Bald" if("previous_hair_style") hair_style = previous_list_item(hair_style, GLOB.hair_styles_list) - if(hair_style == "Tail Hair" && clientckey <> "duote3ox") + if(hair_style == "Tail Hair" && clientckey <> "quotefox") hair_style = "Bald" if("facial")