From 63c45e53b71a307d3f709b4d0c2ca32630d1d005 Mon Sep 17 00:00:00 2001 From: Ez-Briz <60048992+Ez-Briz@users.noreply.github.com> Date: Wed, 19 Feb 2025 04:59:48 +0300 Subject: [PATCH] Fix: fixed Access Checker null reference interface window (#89496) ## About The Pull Request Fixes Access Checker component interface Fixes #69970 ![image](https://github.com/user-attachments/assets/4af165ea-9c08-4e82-85f9-8482b6ee4a9d) ## Why It's Good For The Game No more bluescreens :cl: fix: fixed bluescreen in Access Checker interface /:cl: Co-authored-by: Ez-Briz --- code/modules/wiremod/components/id/access_checker.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/wiremod/components/id/access_checker.dm b/code/modules/wiremod/components/id/access_checker.dm index 1644d12cba5..853df324315 100644 --- a/code/modules/wiremod/components/id/access_checker.dm +++ b/code/modules/wiremod/components/id/access_checker.dm @@ -83,7 +83,7 @@ /obj/item/circuit_component/compare/access/ui_data(mob/user) var/list/data = list() - data["accesses"] = required_accesses.value + data["accesses"] = required_accesses.value || list() data["oneAccess"] = check_any.value return data