From 54955c4ea08737ce64d808defc5c1432656d0591 Mon Sep 17 00:00:00 2001 From: Mark9013100 Date: Fri, 15 Apr 2016 13:44:04 -0400 Subject: [PATCH] Adds the Warden & HoS navy blue and corp jumpsuits to loadout --- .../loadout/loadout_uniform.dm | 24 +++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index d39041c526..5ea992d093 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -295,6 +295,16 @@ path = /obj/item/clothing/under/rank/security/corp allowed_roles = list("Security Officer","Head of Security","Warden") +/datum/gear/uniform/corpwarsuit + display_name = "uniform, corporate (Warden)" + path = /obj/item/clothing/under/rank/warden/corp + allowed_roles = list("Head of Security","Warden") + +/datum/gear/uniform/corphossuit + display_name = "uniform, corporate (Head of Security)" + path = /obj/item/clothing/under/rank/head_of_security/corp + allowed_roles = list("Head of Security") + /datum/gear/uniform/uniform_hop display_name = "uniform, HoP's dress" path = /obj/item/clothing/under/dress/dress_hop @@ -307,6 +317,16 @@ allowed_roles = list("Head of Personnel") /datum/gear/uniform/navysecsuit - display_name = "uniform, navyblue (Security)" + display_name = "uniform, navy blue (Security)" path = /obj/item/clothing/under/rank/security/navyblue - allowed_roles = list("Security Officer","Head of Security","Warden") \ No newline at end of file + allowed_roles = list("Security Officer","Head of Security","Warden") + +/datum/gear/uniform/navywarsuit + display_name = "uniform, navy blue (Wardem)" + path = /obj/item/clothing/under/rank/warden/navyblue + allowed_roles = list("Head of Security","Warden") + +/datum/gear/uniform/navyhossuit + display_name = "uniform, navy blue (Head of Security)" + path = /obj/item/clothing/under/rank/head_of_security/navyblue + allowed_roles = list("Head of Security") \ No newline at end of file