From 9ae4e1617522e0f62e719c64359d9e383b7d4e9e Mon Sep 17 00:00:00 2001 From: Fikou <23585223+Fikou@users.noreply.github.com> Date: Mon, 8 May 2023 19:27:44 +0200 Subject: [PATCH] adds orm access to service jobs missing it (#75225) ## About The Pull Request adds orm access to the chaplain, curator, clown, mime, lawyer, and psychologist ## Why It's Good For The Game most of them didnt have it because they were part of the civilian department which didnt have a lathe. they were moved to service a few years back but we forgot to give them the access someone just forgot about it when making psychologist lol ## Changelog :cl: fix: adds orm access to the chaplain, curator, clown, mime, lawyer, and psychologist /:cl: --- code/datums/id_trim/jobs.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/datums/id_trim/jobs.dm b/code/datums/id_trim/jobs.dm index fc54d3550e2..60840195d00 100644 --- a/code/datums/id_trim/jobs.dm +++ b/code/datums/id_trim/jobs.dm @@ -234,6 +234,7 @@ minimal_access = list( ACCESS_CHAPEL_OFFICE, ACCESS_CREMATORIUM, + ACCESS_MINERAL_STOREROOM, ACCESS_MORGUE, ACCESS_SERVICE, ACCESS_THEATRE, @@ -358,6 +359,7 @@ subdepartment_color = COLOR_MAGENTA sechud_icon_state = SECHUD_CLOWN minimal_access = list( + ACCESS_MINERAL_STOREROOM, ACCESS_SERVICE, ACCESS_THEATRE, ) @@ -404,11 +406,11 @@ sechud_icon_state = SECHUD_CORONER minimal_access = list( ACCESS_MEDICAL, + ACCESS_MINERAL_STOREROOM, ACCESS_MORGUE, ACCESS_MORGUE_SECURE, ACCESS_SERVICE, ACCESS_SURGERY, - ACCESS_MINERAL_STOREROOM, ) extra_access = list( ACCESS_PSYCHOLOGY, @@ -431,6 +433,7 @@ minimal_access = list( ACCESS_AUX_BASE, ACCESS_LIBRARY, + ACCESS_MINERAL_STOREROOM, ACCESS_MINING_STATION, ACCESS_SERVICE, ) @@ -647,6 +650,7 @@ ACCESS_BRIG_ENTRANCE, ACCESS_COURT, ACCESS_LAWYER, + ACCESS_MINERAL_STOREROOM, ACCESS_SERVICE, ) extra_access = list() @@ -689,6 +693,7 @@ subdepartment_color = COLOR_WHITE sechud_icon_state = SECHUD_MIME minimal_access = list( + ACCESS_MINERAL_STOREROOM, ACCESS_SERVICE, ACCESS_THEATRE, ) @@ -780,6 +785,7 @@ sechud_icon_state = SECHUD_PSYCHOLOGIST minimal_access = list( ACCESS_MEDICAL, + ACCESS_MINERAL_STOREROOM, ACCESS_PSYCHOLOGY, ACCESS_SERVICE, )