From c6496736bc4e9226564413e8be3ba6e4e94ff117 Mon Sep 17 00:00:00 2001 From: Son-of-Space <63861499+Son-of-Space@users.noreply.github.com> Date: Sat, 7 May 2022 18:52:24 -0700 Subject: [PATCH] Removes built-in access reqs from certain airlocks (#66756) Prevents people from using those airlocks without also using mapping helpers. Prevents people from placing them down thinking they will work to limit access when they did not. Idiot-proofs the accesses in case someone goes through and does something with the access system later that makes them actually work and/or override the mapping helpers. Enables people to use those types of airlocks in other places without having to make subtypes for them. --- code/game/machinery/doors/airlock_types.dm | 3 --- 1 file changed, 3 deletions(-) diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm index 42e4bcf23db..c00189147fa 100644 --- a/code/game/machinery/doors/airlock_types.dm +++ b/code/game/machinery/doors/airlock_types.dm @@ -118,7 +118,6 @@ autoclose = FALSE frequency = FREQ_AIRLOCK_CONTROL heat_proof = TRUE - req_access = list(ACCESS_ORDNANCE) /obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior name = "Mixing Room Interior Airlock" @@ -313,7 +312,6 @@ autoclose = FALSE frequency = FREQ_AIRLOCK_CONTROL heat_proof = TRUE - req_one_access = list(ACCESS_ATMOSPHERICS, ACCESS_MAINT_TUNNELS) /obj/machinery/door/airlock/public/glass/incinerator/atmos_interior name = "Turbine Interior Airlock" @@ -334,7 +332,6 @@ overlays_file = 'icons/obj/doors/airlocks/external/overlays.dmi' note_overlay_file = 'icons/obj/doors/airlocks/external/overlays.dmi' assemblytype = /obj/structure/door_assembly/door_assembly_ext - req_access = list(ACCESS_EXTERNAL_AIRLOCKS) /// Whether or not the airlock can be opened without access from a certain direction while powered, or with bare hands from any direction while unpowered OR pressurized. var/space_dir = null