diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index c3595645efa..a9aa70ae1fd 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -273,6 +273,7 @@ new /obj/item/clothing/under/lawyer/oldman(src) new /obj/item/clothing/under/lawyer/black(src) new /obj/item/clothing/under/lawyer/female(src) + new /obj/item/clothing/head/ntrep(src) return diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index 2908b473709..da07efd0c9c 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -34,6 +34,13 @@ armor = list(melee = 50, bullet = 15, laser = 50, energy = 10, bomb = 25, bio = 0, rad = 0) loose = 43 // not the answer +//Nanotrasen Representative +/obj/item/clothing/head/ntrep + name = "Nanotrasen Representative hat" + desc = "A cap issued to the Nanotrasen Representative" + icon_state = "ntrep" + + //Chaplain /obj/item/clothing/head/chaplain_hood name = "chaplain's hood" diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 6b6be613a65..0fa9ecf7f43 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 b6d1345cea5..f197a06ae79 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ