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")