diff --git a/code/modules/client/preference_setup/loadout/loadout_cosmetics.dm b/code/modules/client/preference_setup/loadout/loadout_cosmetics.dm index 2747bd59b5f..4bc6d29fa44 100644 --- a/code/modules/client/preference_setup/loadout/loadout_cosmetics.dm +++ b/code/modules/client/preference_setup/loadout/loadout_cosmetics.dm @@ -1,7 +1,12 @@ /datum/gear/cosmetic - display_name = "purple comb" + display_name = "handheld mirror" + path = /obj/item/mirror + sort_category = "Cosmetics" + +/datum/gear/cosmetic/haircomb + display_name = "comb" path = /obj/item/haircomb - sort_category = "Cosmetics" + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION /datum/gear/cosmetic/lipstick display_name = "lipstick selection" @@ -30,6 +35,3 @@ gear_tweaks += new/datum/gear_tweak/path(lipsticks) -/datum/gear/cosmetic/mirror - display_name = "handheld mirror" - path = /obj/item/mirror diff --git a/html/changelogs/wickedcybs_comb.yml b/html/changelogs/wickedcybs_comb.yml new file mode 100644 index 00000000000..7ae6e20fe1c --- /dev/null +++ b/html/changelogs/wickedcybs_comb.yml @@ -0,0 +1,6 @@ +author: WickedCybs + +delete-after: True + +changes: + - tweak: "The purple comb in the cosmetics section wasn't purple, it was gray. It's been renamed to 'comb' and can now be recoloured too."