From d7d79c1c541099708ccbdf7ef518910ebd7b68ea Mon Sep 17 00:00:00 2001 From: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Date: Sat, 12 Aug 2023 15:14:12 -0400 Subject: [PATCH] Bumps gateway access down to Common access (#77534) ## About The Pull Request Moves Gateway from requiring a Silver ID to a regular one. ## Why It's Good For The Game Gateway is a Command access, but when it is enabled it is either locked behind requiring a Silver ID, or opening the door/shutters to public access. We should not expect Command members (the only ones who have silver IDs) to abandon the station to go explore the gateway, and we also should not expect it to always be public access as it ruins the point of an ID-locked area. This lets the HoP give out Gateway access at the cost of a trim slot, rather than force the entire area to be put on emergency access/open shutters, which is a lame obligation for exploration content. ## Changelog :cl: qol: Gateway access no longer requires a Silver ID. /:cl: --- 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 5077dde1b85..6c731a7e262 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -292,6 +292,7 @@ ACCESS_ENGINE_EQUIP, \ ACCESS_ENGINEERING, \ ACCESS_EXTERNAL_AIRLOCKS, \ + ACCESS_GATEWAY, \ ACCESS_GENETICS, \ ACCESS_HYDROPONICS, \ ACCESS_JANITOR, \ @@ -338,7 +339,6 @@ ACCESS_CHANGE_IDS, \ ACCESS_COMMAND, \ ACCESS_EVA, \ - ACCESS_GATEWAY, \ ACCESS_KEYCARD_AUTH, \ ACCESS_MINISAT, \ ACCESS_RC_ANNOUNCE, \