Skip to content

Commit

Permalink
fixes WY access to research (#4381)
Browse files Browse the repository at this point in the history
# About the pull request
Bugs bad. Restores access to main area of research for WY research team.
<!-- Remove this text and explain what the purpose of your PR is.

Mention if you have tested your changes. If you changed a map, make sure
you used the mapmerge tool.
If this is an Issue Correction, you can type "Fixes Issue #169420" to
link the PR to the corresponding Issue number #169420.

Remember: something that is self-evident to you might not be to others.
Explain your rationale fully, even if you feel it goes without saying.
-->

# Explain why it's good for the game
I did an oops.
# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
fix: Fixes WY access to Almayer Research.
/:cl:
  • Loading branch information
realforest2001 committed Sep 11, 2023
1 parent 99da0ff commit 0d44285
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/game/machinery/doors/multi_tile.dm
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
icon = 'icons/obj/structures/doors/Door2x1research.dmi'
opacity = FALSE
glass = 1
req_one_access = list(ACCESS_MARINE_RESEARCH, ACCESS_WY_RESEARCH, ACCESS_WY_EXEC)

/obj/structure/machinery/door/airlock/multi_tile/research/colony
req_access = null
Expand Down Expand Up @@ -178,7 +179,7 @@

/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research
name = "\improper Research Airlock"
req_one_access = list(ACCESS_MARINE_RESEARCH)
req_one_access = list(ACCESS_MARINE_RESEARCH, ACCESS_WY_RESEARCH, ACCESS_WY_EXEC)
masterkey_resist = TRUE

/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research/colony
Expand Down

0 comments on commit 0d44285

Please sign in to comment.