diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno_yw.dm b/code/modules/client/preference_setup/loadout/loadout_xeno_yw.dm index 960c09203e..fe77542d67 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_yw.dm @@ -67,9 +67,9 @@ path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/wrdn allowed_roles = list("Head of Security","Warden") -/datum/gear/suit/dept/beltcloak/cs +/datum/gear/suit/dept/beltcloak/hos display_name = "Chief of Security belted cloak (Teshari)" - path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cs + path = /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/hos allowed_roles = list("Head of Security") /datum/gear/suit/dept/beltcloak/jani @@ -125,6 +125,14 @@ cloaks[initial(cloak_type.name)] = cloak_type gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks)) +/datum/gear/suit/dept/cloak/ce/New() + ..() + var/list/cloaks = list() + for(var/cloak in typesof(/obj/item/clothing/suit/storage/seromi/cloak/jobs/ce,/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/ce)) + var/obj/item/clothing/suit/storage/seromi/cloak/cloak_type = cloak + cloaks[initial(cloak_type.name)] = cloak_type + gear_tweaks += new/datum/gear_tweak/path(sortAssoc(cloaks)) + /datum/gear/suit/dept/cloak/engineer/New() ..() var/list/cloaks = list() diff --git a/code/modules/clothing/suits/aliens/seromi_yw.dm b/code/modules/clothing/suits/aliens/seromi_yw.dm index 8225d5a5d0..377eb18fb4 100644 --- a/code/modules/clothing/suits/aliens/seromi_yw.dm +++ b/code/modules/clothing/suits/aliens/seromi_yw.dm @@ -561,11 +561,11 @@ icon_state = "tesh_beltcloak_wrdn" item_state = "tesh_beltcloak_wrdn" -/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/cs +/obj/item/clothing/suit/storage/seromi/beltcloak/jobs/hos name = "security chief belted cloak" desc = "A soft Teshari cloak made for the Head of Security" - icon_state = "tesh_beltcloak_cs" - item_state = "tesh_beltcloak_cs" + icon_state = "tesh_beltcloak_hos" + item_state = "tesh_beltcloak_hos" /obj/item/clothing/suit/storage/seromi/beltcloak/jobs/jani name = "janitor belted cloak" diff --git a/icons/mob/species/seromi/teshari_cloak_yw.dmi b/icons/mob/species/seromi/teshari_cloak_yw.dmi index f74949991d..075b032554 100644 Binary files a/icons/mob/species/seromi/teshari_cloak_yw.dmi and b/icons/mob/species/seromi/teshari_cloak_yw.dmi differ