From 5c02cd35ebddb864aa4a4087d703a43f206f8a6a Mon Sep 17 00:00:00 2001 From: Seth Scherer Date: Wed, 5 Jan 2022 14:09:12 -0500 Subject: [PATCH] Fixes silicons being unable to disable holodeck safeties (#63834) --- code/modules/holodeck/computer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/holodeck/computer.dm b/code/modules/holodeck/computer.dm index b89db243719..cb80efce392 100644 --- a/code/modules/holodeck/computer.dm +++ b/code/modules/holodeck/computer.dm @@ -170,7 +170,7 @@ GLOBAL_LIST_INIT(typecache_holodeck_linked_floorcheck_ok, typecacheof(list(/turf if(program_to_load) load_program(program_to_load) if("safety") - if (!(obj_flags & EMAGGED) || !issilicon(usr)) + if (!(obj_flags & EMAGGED) && !issilicon(usr)) return if((obj_flags & EMAGGED) && program) emergency_shutdown()