From ea89193e7d4fe6bb7c7516f8fdbbb34981f5fe6a Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Thu, 9 Apr 2020 01:54:14 +0100 Subject: [PATCH] merged additional option from #6957 --- code/game/machinery/suit_storage_unit.dm | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index bf2c8f66a0..16f79f7e74 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -586,7 +586,7 @@ var/electrified = 0 //Departments that the cycler can paint suits to look like. - var/list/departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control") + var/list/departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control","Sec EVA") //Species that the suits can be configured to fit. var/list/species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_UNATHI,SPECIES_TAJ, SPECIES_TESHARI) @@ -628,7 +628,7 @@ name = "Security suit cycler" model_text = "Security" req_access = list(access_security) - departments = list("Security","Crowd Control") + departments = list("Security","Crowd Control","Sec EVA") /obj/machinery/suit_cycler/medical name = "Medical suit cycler" @@ -766,7 +766,7 @@ //Clear the access reqs, disable the safeties, and open up all paintjobs. to_chat(user, "You run the sequencer across the interface, corrupting the operating protocols.") - departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Crowd Control","Emergency Medical Response","^%###^%$", "Charring") + departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Crowd Control","Sec EVA","Emergency Medical Response","^%###^%$", "Charring") species = list(SPECIES_HUMAN,SPECIES_TAJ,SPECIES_SKRELL,SPECIES_UNATHI, SPECIES_TESHARI) emagged = 1 @@ -1005,6 +1005,9 @@ if("Crowd Control") parent_helmet = /obj/item/clothing/head/helmet/space/void/security/riot parent_suit = /obj/item/clothing/suit/space/void/security/riot + if("Sec EVA") + parent_helmet = /obj/item/clothing/head/helmet/space/void/security/alt + parent_suit = /obj/item/clothing/suit/space/void/security/alt if("Atmos") parent_helmet = /obj/item/clothing/head/helmet/space/void/atmos parent_suit = /obj/item/clothing/suit/space/void/atmos