diff --git a/code/defines/obj/clothing/gimmick.dm b/code/defines/obj/clothing/gimmick.dm index ca1f010a1c4..bd0aa4c763f 100644 --- a/code/defines/obj/clothing/gimmick.dm +++ b/code/defines/obj/clothing/gimmick.dm @@ -188,14 +188,14 @@ icon_state = "monocle" item_state = "headset" // lol -/obj/item/clothing/under/rank/captain/suit +/obj/item/clothing/under/gimmick/rank/captain/suit name = "Captain's Suit" desc = "A green suit and yellow necktie. Exemplifies authority." icon_state = "green_suit" item_state = "dg_suit" color = "green_suit" -/obj/item/clothing/under/rank/head_of_personnel/suit +/obj/item/clothing/under/gimmick/rank/head_of_personnel/suit name = "Head of Personnel's Suit" desc = "A teal suit and yellow necktie. An authoritative yet tacky ensemble." icon_state = "teal_suit" @@ -216,7 +216,7 @@ item_state = "r_suit" color = "red_suit" -/obj/item/clothing/under/rank/police +/obj/item/clothing/under/gimmick/rank/police name = "Police Uniform" desc = "Move along, nothing to see here." icon_state = "police" diff --git a/code/game/objects/items/clothing.dm b/code/game/objects/items/clothing.dm index 075c0a56812..66746c54d5d 100644 --- a/code/game/objects/items/clothing.dm +++ b/code/game/objects/items/clothing.dm @@ -194,6 +194,17 @@ DEATH COMMANDO GAS MASK var/obj/item/clothing/under/V = new U src.clothing_choices += V + for(var/U in typesof(/obj/item/clothing/under/rank)-(/obj/item/clothing/under/rank)) + + var/obj/item/clothing/under/V = new U + src.clothing_choices += V + + src.clothing_choices += new /obj/item/clothing/under/bartender + src.clothing_choices += new /obj/item/clothing/under/cargo + src.clothing_choices += new /obj/item/clothing/under/chef + src.clothing_choices += new /obj/item/clothing/under/clown + src.clothing_choices += new /obj/item/clothing/under/det + src.clothing_choices += new /obj/item/clothing/under/librarian return diff --git a/icons/changelog.html b/icons/changelog.html index 2c0ac553a1a..9d8dcc9f249 100644 --- a/icons/changelog.html +++ b/icons/changelog.html @@ -41,6 +41,27 @@ Thanks to: CDK Station devs, GoonStation devs and original SpaceStation developers