diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm index 9332128acf6..d26642580b7 100644 --- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm @@ -77,6 +77,7 @@ /obj/structure/closet/lawcloset/PopulateContents() ..() + new /obj/item/clothing/under/suit/blacktwopiece(src) new /obj/item/clothing/under/rank/civilian/lawyer/female(src) new /obj/item/clothing/under/rank/civilian/lawyer/black(src) new /obj/item/clothing/under/rank/civilian/lawyer/red(src) diff --git a/code/modules/clothing/under/suits.dm b/code/modules/clothing/under/suits.dm index 74a3f0d3fe6..320c6c325c9 100644 --- a/code/modules/clothing/under/suits.dm +++ b/code/modules/clothing/under/suits.dm @@ -31,14 +31,22 @@ item_color = "waiter" can_adjust = FALSE -/obj/item/clothing/under/suit/black - name = "black suit" +/obj/item/clothing/under/suit/blacktwopiece + name = "black two piece suit" desc = "A black suit and red tie. Very formal." icon_state = "black_suit" item_state = "bl_suit" item_color = "black_suit" can_adjust = FALSE +/obj/item/clothing/under/suit/black + name = "black suit" + desc = "A professional looking black suit. Ready for some serious law." + icon_state = "blacksuit" + item_state = "blacksuit" + item_color = "blacksuit" + can_adjust = FALSE + /obj/item/clothing/under/suit/black/skirt name = "black suitskirt" desc = "A professional black suit. Nanotrasen Investigation Bureau approved!"