Fixes blueshield sci access (#4172)

## About The Pull Request
The blueshield's ID had the "science" tag if you looked at it through
the HOP console, but that one is specifically for
circuits/experimentor/toxins/etc.

The "research" tag in the hop console actually lets them enter science
main, this means blueshield was able to enter toxins and circuits, but
not the main research area.

Which is more than likely not an oversight. Being able to enter xenobio
but not Actually Just The Main Department is ????

I don't blame whoever did this on skyrat given the access is the wrong
way around in the code but that's an upstream problem I don't care
enough to fix right now.
## Why It's Good For The Game
Fixing oversight good
## Proof Of Testing

I loaded it up locally and it works
<details>
<summary>Screenshots/Videos</summary>

</details>

## Changelog
🆑
fix: Blueshields can now properly enter science.
/🆑
This commit is contained in:
SapphoQueer
2025-07-03 12:54:17 -04:00
committed by GitHub
parent 0e5cd38add
commit 6c33a84d87
@@ -56,7 +56,7 @@
extra_access = list(ACCESS_BRIG, ACCESS_CARGO, ACCESS_COURT, ACCESS_SECURITY)
minimal_access = list(
ACCESS_CAPTAIN, ACCESS_BRIG_ENTRANCE, ACCESS_COMMAND, ACCESS_CONSTRUCTION, ACCESS_DETECTIVE, ACCESS_ENGINEERING,
ACCESS_GATEWAY, ACCESS_MAINT_TUNNELS, ACCESS_MEDICAL, ACCESS_RC_ANNOUNCE, ACCESS_RESEARCH, ACCESS_WEAPONS,
ACCESS_GATEWAY, ACCESS_MAINT_TUNNELS, ACCESS_MEDICAL, ACCESS_RC_ANNOUNCE, ACCESS_SCIENCE, ACCESS_WEAPONS,
)
minimal_wildcard_access = list()
template_access = list(ACCESS_CAPTAIN)