diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 83c2910a..8799984b 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -13,6 +13,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/client/parent //doohickeys for savefiles var/path + var/clientckey var/default_slot = 1 //Holder so it doesn't default to slot 1, rather the last one used var/max_save_slots = 8 @@ -233,6 +234,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(istype(C)) if(!IsGuestKey(C.key)) load_path(C.ckey) + clientckey = C.ckey unlock_content = C.IsByondMember() if(unlock_content) max_save_slots = 16 @@ -1537,6 +1539,9 @@ 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 <> "quotefox") + hair_style = "bald" + if("next_hair_style") hair_style = next_list_item(hair_style, GLOB.hair_styles_list) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm b/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm index f8d8d263..e5682059 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm @@ -461,4 +461,8 @@ /datum/sprite_accessory/hair/longestalt name = "Very Long with Fringe" - icon_state = "hair_vlongfringe" \ No newline at end of file + icon_state = "hair_vlongfringe" + +/datum/sprite_accessory/hair/quotey + name = "Tail Hair" + icon_state = "hair_tailhair" diff --git a/icons/mob/human_face.dmi b/icons/mob/human_face.dmi index 59de8600..ed547265 100644 Binary files a/icons/mob/human_face.dmi and b/icons/mob/human_face.dmi differ diff --git a/icons/mob/human_parts_greyscale.dmi b/icons/mob/human_parts_greyscale.dmi index 97aeea4e..fb800d7d 100644 Binary files a/icons/mob/human_parts_greyscale.dmi and b/icons/mob/human_parts_greyscale.dmi differ