From c621585ea8f917a1c95b5de2ddcd5b703ed5e172 Mon Sep 17 00:00:00 2001 From: tonty <39193182+tontyGH@users.noreply.github.com> Date: Fri, 9 Jan 2026 18:05:09 -0500 Subject: [PATCH] [NO GBP] Mildly improves conflicting access helper logging (#94790) The previous logging messages were copy pastes from eachother so this is fixing that, but I thought it was better to have more clear wording while I was here. --- code/modules/mapping/access_helpers.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mapping/access_helpers.dm b/code/modules/mapping/access_helpers.dm index 16132ef31af..1fa03148028 100644 --- a/code/modules/mapping/access_helpers.dm +++ b/code/modules/mapping/access_helpers.dm @@ -5,14 +5,14 @@ // These are mutually exclusive; can't have req_any and req_all /obj/effect/mapping_helpers/airlock/access/any/payload(obj/machinery/door/airlock/airlock) if(airlock.req_access != null) - log_mapping("[src] at [AREACOORD(src)] tried to set req_one_access, but req_access was already set!") + log_mapping("[src] access at [AREACOORD(src)] failed to apply (cannot mix any/all access helpers: all existed, any failed)") else var/list/access_list = get_access() airlock.req_one_access += access_list /obj/effect/mapping_helpers/airlock/access/all/payload(obj/machinery/door/airlock/airlock) if(airlock.req_one_access != null) - log_mapping("[src] at [AREACOORD(src)] tried to set req_one_access, but req_access was already set!") + log_mapping("[src] access at [AREACOORD(src)] failed to apply (cannot mix any/all access helpers: any existed, all failed)") else var/list/access_list = get_access() airlock.req_access += access_list