diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm index d2d26ec0b59..ab9332fd500 100644 --- a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm +++ b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm @@ -63,6 +63,9 @@ new /obj/item/clothing/head/that(src) new /obj/item/clothing/head/that(src) new /obj/item/clothing/head/that(src) + new /obj/item/clothing/head/soft/black(src) + new /obj/item/clothing/head/soft/black(src) + new /obj/item/clothing/head/soft/black(src) return diff --git a/code/modules/client/preferences_gear.dm b/code/modules/client/preferences_gear.dm index 25e1da639f9..0fcb4caf4d1 100644 --- a/code/modules/client/preferences_gear.dm +++ b/code/modules/client/preferences_gear.dm @@ -96,7 +96,13 @@ var/global/list/gear_datums = list() slot = slot_head allowed_roles = list("Security Officer","Head of Security","Warden") -/datum/gear/bcap +/datum/gear/blackcap + display_name = "cap, black" + path = /obj/item/clothing/head/soft/black + cost = 1 + slot = slot_head + +/datum/gear/bluecap display_name = "cap, blue" path = /obj/item/clothing/head/soft/blue cost = 1 diff --git a/code/modules/clothing/head/soft_caps.dm b/code/modules/clothing/head/soft_caps.dm index 5cb23c58ea7..86fc120fb48 100644 --- a/code/modules/clothing/head/soft_caps.dm +++ b/code/modules/clothing/head/soft_caps.dm @@ -80,3 +80,8 @@ name = "corporate security cap" desc = "It's field cap in corporate colors." icon_state = "corpsoft" + +/obj/item/clothing/head/soft/black + name = "black cap" + desc = "It's a peaked cap in a tasteful black color." + icon_state = "blacksoft" \ No newline at end of file diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index cf14b1f9c90..df364632e40 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 fff38f82d6c..53af9a12ad8 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ