From b26319cb165ea344f2a64220819959209278fae7 Mon Sep 17 00:00:00 2001 From: katnep Date: Mon, 3 Apr 2017 19:47:51 +0100 Subject: [PATCH] Access changes for chaplain g.tech and engineers (#297) * access tweaks removes maint access from roles that don't need them, I.E janitor, and assistant * assistant tweak removed checking for assistants have maint config * Revert "assistant tweak" This reverts commit 63fe914117a9e9c6b52a9effe29c2131c8da7a4e. * Revert "access tweaks" This reverts commit 68144943ee0e8b33cd8560a9dd4620532891424c. * access changes (actually valid edition) adds atmos access to engineers even on high pop rounds, because atmos have all engi access and it makes sense to have it the other way round strips the science access of geneticist because they don't actually need to be in there even if they are technically researching genetics * chaplain removes chaplain theatre access becuase they don't really need it * detective sec access gives detective security access on skeleton crew * Update security.dm --- code/modules/jobs/job_types/civilian_chaplain.dm | 4 ++-- code/modules/jobs/job_types/engineering.dm | 2 +- code/modules/jobs/job_types/medical.dm | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/jobs/job_types/civilian_chaplain.dm b/code/modules/jobs/job_types/civilian_chaplain.dm index 227b6c378b..5f36b1a5fb 100644 --- a/code/modules/jobs/job_types/civilian_chaplain.dm +++ b/code/modules/jobs/job_types/civilian_chaplain.dm @@ -15,8 +15,8 @@ Chaplain outfit = /datum/outfit/job/chaplain - access = list(access_morgue, access_chapel_office, access_crematorium, access_theatre) - minimal_access = list(access_morgue, access_chapel_office, access_crematorium, access_theatre) + access = list(access_morgue, access_chapel_office, access_crematorium) + minimal_access = list(access_morgue, access_chapel_office, access_crematorium) /datum/outfit/job/chaplain name = "Chaplain" diff --git a/code/modules/jobs/job_types/engineering.dm b/code/modules/jobs/job_types/engineering.dm index 2d03c46f3b..e0e1269939 100644 --- a/code/modules/jobs/job_types/engineering.dm +++ b/code/modules/jobs/job_types/engineering.dm @@ -77,7 +77,7 @@ Station Engineer access = list(access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, access_external_airlocks, access_construction, access_atmospherics, access_tcomsat) minimal_access = list(access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, - access_external_airlocks, access_construction, access_tcomsat) + access_external_airlocks, access_construction, access_tcomsat, access_atmospherics) /datum/outfit/job/engineer name = "Station Engineer" diff --git a/code/modules/jobs/job_types/medical.dm b/code/modules/jobs/job_types/medical.dm index e2a8368238..f8d1ac0817 100644 --- a/code/modules/jobs/job_types/medical.dm +++ b/code/modules/jobs/job_types/medical.dm @@ -127,8 +127,8 @@ Geneticist outfit = /datum/outfit/job/geneticist - access = list(access_medical, access_morgue, access_chemistry, access_genetics, access_cloning, access_research, access_xenobiology, access_robotics, access_mineral_storeroom, access_tech_storage) - minimal_access = list(access_medical, access_morgue, access_genetics, access_cloning, access_research) + access = list(access_medical, access_morgue, access_chemistry, access_genetics, access_cloning, access_research, access_mineral_storeroom) + minimal_access = list(access_medical, access_morgue, access_genetics, access_cloning,) /datum/outfit/job/geneticist name = "Geneticist"