From 8b7f4c8b69c74c6de5a755272eb8d3520f3d87c7 Mon Sep 17 00:00:00 2001 From: Contrabang <91113370+Contrabang@users.noreply.github.com> Date: Tue, 23 May 2023 05:33:41 -0400 Subject: [PATCH] OOPS (#21166) --- code/game/machinery/computer/communications.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm index 006963faee1..5e7f9821680 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -132,7 +132,7 @@ var/obj/item/card/id/I = H.get_idcard(TRUE) if(istype(I)) // You must have captain access and it must be red alert or lower (no getting off delta/epsilon) - if(ACCESS_CAPTAIN in I.access && GLOB.security_level <= SEC_LEVEL_RED) + if((ACCESS_CAPTAIN in I.access) && GLOB.security_level <= SEC_LEVEL_RED) change_security_level(text2num(params["level"])) else to_chat(usr, "You are not authorized to do this.")