From 4fbc8c22b2cb00f369366affdf907735a9cd8fef Mon Sep 17 00:00:00 2001 From: Darius <5933805+LeDrascol@users.noreply.github.com> Date: Sat, 4 Mar 2023 04:00:41 +0000 Subject: [PATCH] Alternative fix for Cargo production access Updates the Cargo production machines to use either `ACCESS_CARGO` or `ACCESS_MINING`. Co-authored-by: SandPoot <43283559+SandPoot@users.noreply.github.com> --- .../code/modules/research/machinery/departmental_protolathe.dm | 2 +- .../code/modules/research/machinery/departmental_techfab.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modular_sand/code/modules/research/machinery/departmental_protolathe.dm b/modular_sand/code/modules/research/machinery/departmental_protolathe.dm index 2c967f2425..53c3fb8dbd 100644 --- a/modular_sand/code/modules/research/machinery/departmental_protolathe.dm +++ b/modular_sand/code/modules/research/machinery/departmental_protolathe.dm @@ -8,7 +8,7 @@ req_access = list(ACCESS_MEDICAL) /obj/machinery/rnd/production/protolathe/department/cargo - req_access = list(ACCESS_MAILSORTING) + req_one_access = list(ACCESS_CARGO, ACCESS_MINING) /obj/machinery/rnd/production/protolathe/department/science req_access = list(ACCESS_RESEARCH) diff --git a/modular_sand/code/modules/research/machinery/departmental_techfab.dm b/modular_sand/code/modules/research/machinery/departmental_techfab.dm index 8d99d82e58..dc5d7d80c8 100644 --- a/modular_sand/code/modules/research/machinery/departmental_techfab.dm +++ b/modular_sand/code/modules/research/machinery/departmental_techfab.dm @@ -8,7 +8,7 @@ req_access = list(ACCESS_MEDICAL) /obj/machinery/rnd/production/techfab/department/cargo - req_access = list(ACCESS_MAILSORTING) + req_one_access = list(ACCESS_CARGO, ACCESS_MINING) /obj/machinery/rnd/production/techfab/department/science req_access = list(ACCESS_RESEARCH)