From 9766d3f747a74b96352e5cf9a46b2fbcbd172525 Mon Sep 17 00:00:00 2001 From: Xander3359 <66163761+Xander3359@users.noreply.github.com> Date: Mon, 20 May 2024 12:04:03 -0400 Subject: [PATCH] fix RD remote not having AI_UPLOAD access (#83328) ## About The Pull Request RD should have access to doors leading to the AI/AI-related things, so I'm adding this access to the remote as well ## Why It's Good For The Game Fix remote lacking access to things the AI can open ## Changelog :cl: fix: The RD remote works on the AI upload door now /:cl: --- code/__DEFINES/access.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm index aed008e6a0c..15dd8b04a06 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -468,6 +468,7 @@ #define REGION_RESEARCH "Research" /// Used to seed the accesses_by_region list in SSid_access. A list of all research regional accesses that are overseen by the RD. #define REGION_ACCESS_RESEARCH list( \ + ACCESS_AI_UPLOAD, \ ACCESS_GENETICS, \ ACCESS_MECH_SCIENCE, \ ACCESS_MINISAT, \