diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 394d12ee31..909d93985a 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -178,6 +178,14 @@ var/global/list/gear_datums = list() display_name = "hair flower pin, blue" path = /obj/item/clothing/head/hairflower/blue +/datum/gear/hairflower/violet + display_name = "hair flower pin, violet" + path = /obj/item/clothing/head/hairflower/violet + +/datum/gear/hairflower/orange + display_name = "hair flower pin, orange" + path = /obj/item/clothing/head/hairflower/orange + /datum/gear/hardhat display_name = "hardhat, yellow" path = /obj/item/clothing/head/hardhat diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index a044f0bd19..fa4446d97c 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -27,6 +27,12 @@ /obj/item/clothing/head/hairflower/yellow icon_state = "hairflower_yellow" +/obj/item/clothing/head/hairflower/violet + icon_state = "hairflower_violet" + +/obj/item/clothing/head/hairflower/orange + icon_state = "hairflower_orange" + /obj/item/clothing/head/powdered_wig name = "powdered wig" desc = "A powdered wig." diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 84059208f1..f7e883cd41 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 7f5d95abc7..f7c3fdea8e 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ