From d41b62295abc4881a7202fc104e74ef07ca3f3a0 Mon Sep 17 00:00:00 2001 From: mikomyazaki <47489928+mikomyazaki@users.noreply.github.com> Date: Fri, 21 Aug 2020 16:07:01 +0100 Subject: [PATCH] Research can access the chem codex program (#9737) --- .../file_system/programs/research/chemistry_codex.dm | 4 ++-- html/changelogs/chem-codex-research.yml | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/chem-codex-research.yml diff --git a/code/modules/modular_computers/file_system/programs/research/chemistry_codex.dm b/code/modules/modular_computers/file_system/programs/research/chemistry_codex.dm index f4a2d48cd9e..0f227fcf14e 100644 --- a/code/modules/modular_computers/file_system/programs/research/chemistry_codex.dm +++ b/code/modules/modular_computers/file_system/programs/research/chemistry_codex.dm @@ -4,8 +4,8 @@ program_icon_state = "generic" extended_desc = "Useful program to view chemical reactions and how to make them." size = 14 - required_access_run = access_medical - required_access_download = access_medical + required_access_run = list(access_medical, access_research) + required_access_download = list(access_medical, access_research) available_on_ntnet = TRUE /datum/computer_file/program/chemistry_codex/ui_interact(mob/user) diff --git a/html/changelogs/chem-codex-research.yml b/html/changelogs/chem-codex-research.yml new file mode 100644 index 00000000000..4127ff1eaa7 --- /dev/null +++ b/html/changelogs/chem-codex-research.yml @@ -0,0 +1,6 @@ +author: mikomyazaki + +delete-after: True + +changes: + - bugfix: "Research can now access and download the Chemistry Codex that is installed on the Research wrist computers." \ No newline at end of file