From f8699555db7802670b63c3b9daa583fcba8481c7 Mon Sep 17 00:00:00 2001 From: FalseIncarnate Date: Thu, 21 Jul 2016 02:50:59 -0400 Subject: [PATCH] Fixes Engineering Coat and Hat not spawning for engineers It's "Station Engineer", not just "Engineer" for the allowed_roles. :cl: bugfix: Engineers can properly show up for work with their hats and coats to keep warm. /:cl: --- code/modules/client/preference/loadout/loadout_hat.dm | 6 +++--- code/modules/client/preference/loadout/loadout_suit.dm | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/client/preference/loadout/loadout_hat.dm b/code/modules/client/preference/loadout/loadout_hat.dm index 74f63e9111c..5580d76f1e5 100644 --- a/code/modules/client/preference/loadout/loadout_hat.dm +++ b/code/modules/client/preference/loadout/loadout_hat.dm @@ -6,17 +6,17 @@ /datum/gear/hat/hhat_yellow display_name = "hardhat, yellow" path = /obj/item/clothing/head/hardhat - allowed_roles = list("Chief Engineer", "Engineer", "Mechanic", "Life Support Specialist") + allowed_roles = list("Chief Engineer", "Station Engineer", "Mechanic", "Life Support Specialist") /datum/gear/hat/hhat_orange display_name = "hardhat, orange" path = /obj/item/clothing/head/hardhat/orange - allowed_roles = list("Chief Engineer", "Engineer", "Mechanic", "Life Support Specialist") + allowed_roles = list("Chief Engineer", "Station Engineer", "Mechanic", "Life Support Specialist") /datum/gear/hat/hhat_blue display_name = "hardhat, blue" path = /obj/item/clothing/head/hardhat/dblue - allowed_roles = list("Chief Engineer", "Engineer", "Mechanic", "Life Support Specialist") + allowed_roles = list("Chief Engineer", "Station Engineer", "Mechanic", "Life Support Specialist") /datum/gear/hat/that display_name = "top hat" diff --git a/code/modules/client/preference/loadout/loadout_suit.dm b/code/modules/client/preference/loadout/loadout_suit.dm index e98d01e0b39..29f0c15c71c 100644 --- a/code/modules/client/preference/loadout/loadout_suit.dm +++ b/code/modules/client/preference/loadout/loadout_suit.dm @@ -39,7 +39,7 @@ /datum/gear/suit/coat/job/engi display_name = "winter coat, engineering" path = /obj/item/clothing/suit/hooded/wintercoat/engineering - allowed_roles = list("Chief Engineer", "Engineer", "Mechanic") + allowed_roles = list("Chief Engineer", "Station Engineer", "Mechanic") /datum/gear/suit/coat/job/atmos display_name = "winter coat, atmospherics"