From 0f35cff251fc02bef8bbd48bea4b16c2b9a7f00f Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 4 Mar 2023 13:59:13 +0100 Subject: [PATCH] [MIRROR] Lawyer PDAs can't be painted by the HoS [MDB IGNORE] (#19653) * Lawyer PDAs can't be painted by the HoS (#70697) ## About The Pull Request Removes the Lawyer's PDA from the head of security's PDA painter, as they're a Service job. ## Why It's Good For The Game They're a Service job, there's no reason for the Head of Security to be able to have any authority over them or their equipment. ## Changelog :cl: fix: The HoS' PDA painter can no longer paint PDAs into Lawyer ones. /:cl: * Lawyer PDAs can't be painted by the HoS --------- Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> --- code/__DEFINES/access.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm index 4d2d9246432..96a049b6d85 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -543,7 +543,7 @@ /obj/item/modular_computer/pda/cargo = list(REGION_SUPPLY), \ /obj/item/modular_computer/pda/shaftminer = list(REGION_SUPPLY), \ /obj/item/modular_computer/pda/chaplain = list(REGION_GENERAL), \ - /obj/item/modular_computer/pda/lawyer = list(REGION_GENERAL, REGION_SECURITY), \ + /obj/item/modular_computer/pda/lawyer = list(REGION_GENERAL), \ /obj/item/modular_computer/pda/botanist = list(REGION_GENERAL), \ /obj/item/modular_computer/pda/roboticist = list(REGION_RESEARCH), \ /obj/item/modular_computer/pda/curator = list(REGION_GENERAL), \