From 37c563d56caa02ceb8599e624ccd7b355e272aab Mon Sep 17 00:00:00 2001 From: Unknown Date: Thu, 2 Apr 2020 15:04:53 -0400 Subject: [PATCH] I should be more consistent in naming things --- code/game/machinery/suit_storage_unit.dm | 6 +++--- code/game/machinery/suit_storage_unit_vr.dm | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index b893b381727..1375646a395 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -1166,13 +1166,13 @@ suit.item_state_slots[slot_r_hand_str] = "sec_voidsuitTG" suit.item_state_slots[slot_l_hand_str] = "sec_voidsuitTG" //VOREStation Addition Start - if("Captain") + if("Director") if(helmet) - helmet.name = "captain voidsuit helmet" + helmet.name = "director voidsuit helmet" helmet.icon_state = "capvoid" helmet.item_state = "capvoid" if(suit) - suit.name = "captain voidsuit" + suit.name = "director voidsuit" suit.icon_state = "capsuit_void" suit.item_state = "capsuit_void" suit.item_state_slots[slot_r_hand_str] = "wiz_voidsuit" diff --git a/code/game/machinery/suit_storage_unit_vr.dm b/code/game/machinery/suit_storage_unit_vr.dm index 6df525b6674..962f6b1c0f0 100644 --- a/code/game/machinery/suit_storage_unit_vr.dm +++ b/code/game/machinery/suit_storage_unit_vr.dm @@ -1,5 +1,5 @@ /obj/machinery/suit_cycler - departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control","Exploration","Pilot Blue","Pilot","Captain","Prototype") + departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control","Exploration","Pilot Blue","Pilot","Director","Prototype") species = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_VULPKANIN) // Old Exploration is too WIP to use right now @@ -11,10 +11,10 @@ req_access = list(access_pilot) /obj/machinery/suit_cycler/captain - name = "Captain suit cycler" - model_text = "Captain" + name = "Director suit cycler" + model_text = "Director" req_access = list(access_captain) - departments = list("Captain") + departments = list("Director") /obj/machinery/suit_cycler/prototype name = "Prototype suit cycler"