From 69950e3a739bce17d52c1a6d25418d95853ad9e5 Mon Sep 17 00:00:00 2001 From: Sun Date: Mon, 13 Jan 2025 22:23:55 -0300 Subject: [PATCH] ahora los heads pueden cambiar el nivel de alerta a azul --- 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 2870683a5c3f..1753f1ef3d4a 100644 --- a/code/game/machinery/computer/communications.dm +++ b/code/game/machinery/computer/communications.dm @@ -152,7 +152,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) && SSsecurity_level.get_current_level_as_number() <= SEC_LEVEL_RED) + if((ACCESS_HEADS in I.access) && SSsecurity_level.get_current_level_as_number() <= SEC_LEVEL_RED) change_security_level(text2num(params["level"])) else to_chat(ui.user, "You are not authorized to do this.")